summaryrefslogtreecommitdiff
path: root/cli/options.ixx
blob: 7ec5579598013133ffd754ea1e9ab9824f2d60d9 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
// This code was generated by CLI, a command line interface
// compiler for C++.
//

namespace cli
{
  // unknown_mode
  //
  inline unknown_mode::
  unknown_mode (value v)
  : v_ (v)
  {
  }

  // exception
  //
  inline std::ostream&
  operator<< (std::ostream& os, const exception& e)
  {
    e.print (os);
    return os;
  }

  // unknown_option
  //
  inline unknown_option::
  unknown_option (const std::string& option)
  : option_ (option)
  {
  }

  inline const std::string& unknown_option::
  option () const
  {
    return option_;
  }

  // unknown_argument
  //
  inline unknown_argument::
  unknown_argument (const std::string& argument)
  : argument_ (argument)
  {
  }

  inline const std::string& unknown_argument::
  argument () const
  {
    return argument_;
  }

  // missing_value
  //
  inline missing_value::
  missing_value (const std::string& option)
  : option_ (option)
  {
  }

  inline const std::string& missing_value::
  option () const
  {
    return option_;
  }

  // invalid_value
  //
  inline invalid_value::
  invalid_value (const std::string& option,
                 const std::string& value)
  : option_ (option),  value_ (value)
  {
  }

  inline const std::string& invalid_value::
  option () const
  {
    return option_;
  }

  inline const std::string& invalid_value::
  value () const
  {
    return value_;
  }
}

// options
//

inline bool const& options::
help () const
{
  return help_;
}

inline bool const& options::
version () const
{
  return version_;
}

inline std::string const& options::
output_dir () const
{
  return output_dir_;
}

inline bool const& options::
suppress_inline () const
{
  return suppress_inline_;
}

inline std::string const& options::
hxx_suffix () const
{
  return hxx_suffix_;
}

inline std::string const& options::
ixx_suffix () const
{
  return ixx_suffix_;
}

inline std::string const& options::
cxx_suffix () const
{
  return cxx_suffix_;
}

inline std::string const& options::
option_prefix () const
{
  return option_prefix_;
}

inline std::string const& options::
option_separator () const
{
  return option_separator_;
}

inline bool const& options::
include_with_brackets () const
{
  return include_with_brackets_;
}

inline std::string const& options::
include_prefix () const
{
  return include_prefix_;
}

inline std::string const& options::
guard_prefix () const
{
  return guard_prefix_;
}

inline std::map<std::string, std::string> const& options::
reserved_name () const
{
  return reserved_name_;
}