20 operator<< (std::ostream& os,
const exception& e)
28 inline unknown_option::
29 unknown_option (std::string option)
30 : option_ (
std::move(option))
34 inline const std::string& unknown_option::
42 inline unknown_argument::
43 unknown_argument (std::string argument)
44 : argument_ (
std::move(argument))
48 inline const std::string& unknown_argument::
56 inline missing_value::
57 missing_value (std::string option)
58 : option_ (
std::move(option))
62 inline const std::string& missing_value::
70 inline invalid_value::
71 invalid_value (std::string option,
73 : option_ (
std::move(option)), value_ (
std::move(value))
77 inline const std::string& invalid_value::
83 inline const std::string& invalid_value::
92 argv_scanner (
int& argc,
char** argv,
bool erase)
93 : i_ (1), argc_ (argc), argv_ (argv), erase_ (erase)
98 argv_scanner (
int start,
int& argc,
char** argv,
bool erase)
99 : i_ (start), argc_ (argc), argv_ (argv), erase_ (erase)
103 inline int argv_scanner::
std::ostream & operator<<(std::ostream &o, Load)
Definition Load.cpp:327
unknown_mode(value v)
Definition actionstatemachine/CommandLineOptions.ixx:14
std::string action_
Definition testactions/CommandLineOptions.hxx:261
const std::string & action() const
Definition testactions/CommandLineOptions.ixx:120
const bool & help() const
Definition actionstatemachine/CommandLineOptions.ixx:116
std::string component_
Definition testactions/CommandLineOptions.hxx:263
std::string input_
Definition testactions/CommandLineOptions.hxx:262
const std::string & component() const
Definition testactions/CommandLineOptions.ixx:132
bool help_
Definition actionstatemachine/CommandLineOptions.hxx:263
const std::string & input() const
Definition testactions/CommandLineOptions.ixx:126
Definition actionstatemachine/CommandLineOptions.cxx:15