From c715379c625935bd4b28bebb35f34721342cc7f3 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 22 Dec 2015 19:29:04 +0200 Subject: Source file names fixup --- brep/mod-package-search | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 brep/mod-package-search (limited to 'brep/mod-package-search') diff --git a/brep/mod-package-search b/brep/mod-package-search new file mode 100644 index 0000000..c86d0b5 --- /dev/null +++ b/brep/mod-package-search @@ -0,0 +1,36 @@ +// file : brep/mod-package-search -*- C++ -*- +// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd +// license : MIT; see accompanying LICENSE file + +#ifndef BREP_MOD_PACKAGE_SEARCH +#define BREP_MOD_PACKAGE_SEARCH + +#include // database + +#include + +#include +#include + +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_; + shared_ptr db_; + }; +} + +#endif // BREP_MOD_PACKAGE_SEARCH -- cgit v1.1