// file : brep/repository-details -*- C++ -*- // copyright : Copyright (c) 2014-2015 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file #ifndef BREP_REPOSITORY_DETAILS #define BREP_REPOSITORY_DETAILS #include // shared_ptr #include // database #include #include namespace brep { class repository_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_REPOSITORY_DETAILS