// file : brep/mod-package-details -*- C++ -*- // copyright : Copyright (c) 2014-2016 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file #ifndef BREP_MOD_PACKAGE_DETAILS #define BREP_MOD_PACKAGE_DETAILS #include // database #include #include #include namespace brep { class package_details: public module { public: virtual bool handle (request&, response&); virtual const cli::options& cli_options () const {return options::package_details::description ();} private: virtual void init (cli::scanner&); private: shared_ptr options_; shared_ptr db_; }; } #endif // BREP_MOD_PACKAGE_DETAILS