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