aboutsummaryrefslogtreecommitdiff
path: root/brep/types-parsers
blob: dfe86a68b580597545beb1eb5d500b2fcd782d2a (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
29
30
31
32
33
34
35
36
37
38
39
// 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 <brep/types>
#include <brep/options-types>

namespace brep
{
  namespace cli
  {
    class scanner;

    template <typename T>
    struct parser;

    template <>
    struct parser<dir_path>
    {
      static void
      parse (dir_path&, scanner&);
    };

    template <>
    struct parser<page_form>
    {
      static void
      parse (page_form&, scanner&);
    };
  }
}

#endif // BREP_TYPES_PARSERS