aboutsummaryrefslogtreecommitdiff
path: root/brep/view
diff options
context:
space:
mode:
Diffstat (limited to 'brep/view')
-rw-r--r--brep/view10
1 files changed, 10 insertions, 0 deletions
diff --git a/brep/view b/brep/view
index 819eff3..d97f9cf 100644
--- a/brep/view
+++ b/brep/view
@@ -5,7 +5,10 @@
#ifndef BREP_VIEW
#define BREP_VIEW
+#include <memory> // shared_ptr
+
#include <brep/module>
+#include <brep/options>
namespace brep
{
@@ -14,6 +17,13 @@ namespace brep
public:
virtual void
handle (request&, response&);
+
+ virtual void
+ init (::cli::scanner&);
+
+ private:
+
+ std::shared_ptr<view_options> options_;
};
}