blob: cfbcd13192b974d29c3de0f93b409a67eb47e3ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
|