// 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 namespace cli { class scanner; template struct parser; template <> struct parser { static void parse (brep::path&, bool&, scanner&); }; } #endif // BREP_LOAD_TYPES_PARSERS