aboutsummaryrefslogtreecommitdiff
path: root/brep/types-parsers
blob: 6d305448ba715de6c5d417cdcf47dea15d1a5d7c (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
// 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 <butl/path>

namespace brep
{
  namespace cli
  {
    class scanner;

    template <typename T>
    struct parser;

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

#endif // BREP_TYPES_PARSERS