aboutsummaryrefslogtreecommitdiff
path: root/clean/types-parsers.hxx
blob: 46fd48320fe640448f0a5645440f3e4690bfbd17 (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      : clean/types-parsers.hxx -*- C++ -*-
// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

// CLI parsers, included into the generated source files.
//

#ifndef CLEAN_TYPES_PARSERS_HXX
#define CLEAN_TYPES_PARSERS_HXX

#include <clean/options-types.hxx>

namespace cli
{
  class scanner;

  template <typename T>
  struct parser;

  template <>
  struct parser<brep::toolchain_timeouts>
  {
    static void
    parse (brep::toolchain_timeouts&, bool&, scanner&);
  };
}

#endif // CLEAN_TYPES_PARSERS_HXX