aboutsummaryrefslogtreecommitdiff
path: root/brep/view
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-08-14 13:03:08 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-08-23 13:53:50 +0200
commitbcd246076540a8353fa55fc0a5e19343c1a2dbc9 (patch)
tree9fe2c24ca33b3d670267a5cbc8c8c756589f359b /brep/view
parent24903813d11813f8ff9ac906d23b21e6c33b981d (diff)
Implement package search service mockup
Diffstat (limited to 'brep/view')
-rw-r--r--brep/view32
1 files changed, 0 insertions, 32 deletions
diff --git a/brep/view b/brep/view
deleted file mode 100644
index 280b9ab..0000000
--- a/brep/view
+++ /dev/null
@@ -1,32 +0,0 @@
-// 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 <memory> // shared_ptr
-
-#include <odb/database.hxx>
-
-#include <brep/module>
-#include <brep/options>
-
-namespace brep
-{
- class view: public module
- {
- private:
- virtual void
- handle (request&, response&);
-
- virtual void
- init (cli::scanner&);
-
- private:
- std::shared_ptr<options::view> options_;
- std::shared_ptr<odb::core::database> db_;
- };
-}
-
-#endif // BREP_VIEW