// 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 // database #include #include #include namespace brep { class package_search: public module { private: virtual void handle (request&, response&); virtual void init (cli::scanner&); private: shared_ptr options_; shared_ptr db_; }; } #endif // BREP_PACKAGE_SEARCH