diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2016-07-12 17:26:45 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2016-07-14 18:07:18 +0300 |
commit | e60108713590ccee83da7e2581a43fd5fda5c8ce (patch) | |
tree | 59650cce83b69e527040560482bba7c8513ab17e /load/types-parsers | |
parent | 8701276b3d98b5c6f927e2865ee6a915296033c1 (diff) |
Add repository certificate info to the About page
Diffstat (limited to 'load/types-parsers')
-rw-r--r-- | load/types-parsers | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/load/types-parsers b/load/types-parsers new file mode 100644 index 0000000..cfbcd13 --- /dev/null +++ b/load/types-parsers @@ -0,0 +1,28 @@ +// file : load/types-parsers -*- C++ -*- +// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd +// license : MIT; see accompanying LICENSE file + +// CLI parsers, included into the generated source files. +// + +#ifndef BREP_LOAD_TYPES_PARSERS +#define BREP_LOAD_TYPES_PARSERS + +#include <brep/types> + +namespace cli +{ + class scanner; + + template <typename T> + struct parser; + + template <> + struct parser<brep::path> + { + static void + parse (brep::path&, bool&, scanner&); + }; +} + +#endif // BREP_LOAD_TYPES_PARSERS |