aboutsummaryrefslogtreecommitdiff
path: root/brep/search
diff options
context:
space:
mode:
Diffstat (limited to 'brep/search')
-rw-r--r--brep/search20
1 files changed, 20 insertions, 0 deletions
diff --git a/brep/search b/brep/search
new file mode 100644
index 0000000..9ea9345
--- /dev/null
+++ b/brep/search
@@ -0,0 +1,20 @@
+// file : brep/search -*- C++ -*-
+// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
+// license : MIT; see accompanying LICENSE file
+
+#ifndef BREP_SEARCH
+#define BREP_SEARCH
+
+#include <brep/module>
+
+namespace brep
+{
+ class search: public module
+ {
+ public:
+ virtual void
+ handle (request&, response&);
+ };
+}
+
+#endif // BREP_SEARCH