summaryrefslogtreecommitdiff
path: root/cli/options.ixx
blob: 77ec7908511f8c06d086f0f8c1d16ee97ce3b1ec (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
169
170
171
172
173
174
175
176
177
178
179
180
// 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 const bool& options::
help () const
{
  return help_;
}

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

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

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

inline const bool& options::
suppress_usage () const
{
  return suppress_usage_;
}

inline const std::size_t& options::
option_length () const
{
  return option_length_;
}

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

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

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

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

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

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

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

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

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