aboutsummaryrefslogtreecommitdiff
path: root/brep/package-search
diff options
context:
space:
mode:
Diffstat (limited to 'brep/package-search')
-rw-r--r--brep/package-search36
1 files changed, 0 insertions, 36 deletions
diff --git a/brep/package-search b/brep/package-search
deleted file mode 100644
index 63ec6e0..0000000
--- a/brep/package-search
+++ /dev/null
@@ -1,36 +0,0 @@
-// file : brep/package-search -*- C++ -*-
-// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
-// license : MIT; see accompanying LICENSE file
-
-#ifndef BREP_PACKAGE_SEARCH
-#define BREP_PACKAGE_SEARCH
-
-#include <odb/forward.hxx> // database
-
-#include <brep/types>
-
-#include <brep/module>
-#include <brep/options>
-
-namespace brep
-{
- class package_search: public module
- {
- public:
- virtual bool
- handle (request&, response&);
-
- virtual const cli::options&
- cli_options () const {return options::package_search::description ();}
-
- private:
- virtual void
- init (cli::scanner&);
-
- private:
- shared_ptr<options::package_search> options_;
- shared_ptr<odb::core::database> db_;
- };
-}
-
-#endif // BREP_PACKAGE_SEARCH