aboutsummaryrefslogtreecommitdiff
path: root/brep/types-parsers
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-11-14 16:29:22 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-11-16 16:42:35 +0200
commit03905bcf1bcfd9e7932fcac4283c5817058a25ce (patch)
treeb643d3bedf436bfcd8956b25133d5674b6b18e36 /brep/types-parsers
parent96281a6c4f818311a6df90c0d8b8f537a61e1090 (diff)
Invent root path web interface configuration option
Diffstat (limited to 'brep/types-parsers')
-rw-r--r--brep/types-parsers31
1 files changed, 31 insertions, 0 deletions
diff --git a/brep/types-parsers b/brep/types-parsers
new file mode 100644
index 0000000..6d30544
--- /dev/null
+++ b/brep/types-parsers
@@ -0,0 +1,31 @@
+// file : brep/types-parsers -*- C++ -*-
+// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+// CLI parsers, included into the generated source files.
+//
+
+#ifndef BREP_TYPES_PARSERS
+#define BREP_TYPES_PARSERS
+
+#include <butl/path>
+
+namespace brep
+{
+ namespace cli
+ {
+ class scanner;
+
+ template <typename T>
+ struct parser;
+
+ template <>
+ struct parser<butl::dir_path>
+ {
+ static void
+ parse (butl::dir_path&, scanner&);
+ };
+ }
+}
+
+#endif // BREP_TYPES_PARSERS