// file : brep/view -*- C++ -*- // copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC // license : MIT; see accompanying LICENSE file #ifndef BREP_VIEW #define BREP_VIEW #include namespace brep { class view: public module { public: virtual void handle (request&, response&); }; } #endif // BREP_VIEW