summaryrefslogtreecommitdiff
path: root/cli/options.cli
blob: a5fe0aee411533cdfaca6efd43f6dbf93205aa86 (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
// file      : cli/options.cli
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

// NOTE: Make sure you have a working CLI compiler around
// before modifying this file.
//

include <map>;
include <string>;
include <vector>;

class options
{
  bool --help;
  bool --version;

  std::string --output-dir | -o;

  bool --suppress-inline;

  std::string --hxx-suffix = ".hxx";
  std::string --ixx-suffix = ".ixx";
  std::string --cxx-suffix = ".cxx";

  std::string --option-prefix = "-";
  std::string --option-separator = "--";

  bool --include-with-brackets;
  std::string --include-prefix;
  std::string --guard-prefix;

  std::map<std::string, std::string> --reserved-name;
};