aboutsummaryrefslogtreecommitdiff
path: root/brep/view
diff options
context:
space:
mode:
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