blob: 1d2a6c9ca0c62fe6759bb0975f5028f8ca6c6f4a (
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
|
// file : load/types-parsers.hxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
// CLI parsers, included into the generated source files.
//
#ifndef LOAD_TYPES_PARSERS_HXX
#define LOAD_TYPES_PARSERS_HXX
#include <libbrep/types.hxx>
namespace cli
{
class scanner;
template <typename T>
struct parser;
template <>
struct parser<brep::path>
{
static void
parse (brep::path&, bool&, scanner&);
};
}
#endif // LOAD_TYPES_PARSERS_HXX
|