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