summaryrefslogtreecommitdiffstats
path: root/bdep/new-parsers.hxx
blob: e771369740a966152d42b1520140e7aadc4228c7 (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
40
41
42
43
44
45
// file      : bdep/new-parsers.hxx -*- C++ -*-
// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

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

#ifndef BDEP_NEW_PARSERS_HXX
#define BDEP_NEW_PARSERS_HXX

#include <bdep/new-types.hxx>

namespace bdep
{
  namespace cli
  {
    class scanner;

    template <typename T>
    struct parser;

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

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

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

#endif // BDEP_NEW_PARSERS_HXX