// file : brep/package-version-details -*- C++ -*- // copyright : Copyright (c) 2014-2015 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file #ifndef BREP_PACKAGE_VERSION_DETAILS #define BREP_PACKAGE_VERSION_DETAILS #include // shared_ptr #include // database #include #include namespace brep { class package_version_details: public module { private: virtual void handle (request&, response&); virtual void init (cli::scanner&); private: std::shared_ptr options_; std::shared_ptr db_; }; } #endif // BREP_PACKAGE_VERSION_DETAILS