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