22 operator<< (std::ostream& os,
const exception& e)
30 inline unknown_option::
31 unknown_option (std::string option)
32 : option_ (
std::move(
std::move(option)))
36 inline const std::string& unknown_option::
44 inline unknown_argument::
45 unknown_argument (std::string argument)
46 : argument_ (
std::move(
std::move(argument)))
50 inline const std::string& unknown_argument::
58 inline missing_value::
59 missing_value (std::string option)
60 : option_ (
std::move(
std::move(option)))
64 inline const std::string& missing_value::
72 inline invalid_value::
73 invalid_value (std::string option,
75 : option_ (
std::move(
std::move(option))), value_ (
std::move(
std::move(value)))
79 inline const std::string& invalid_value::
85 inline const std::string& invalid_value::
94 argv_scanner (
int& argc,
char** argv,
bool erase)
95 : i_ (1), argc_ (argc), argv_ (argv), erase_ (erase)
100 argv_scanner (
int start,
int& argc,
char** argv,
bool erase)
101 : i_ (start), argc_ (argc), argv_ (argv), erase_ (erase)
105 inline int argv_scanner::
std::ostream & operator<<(std::ostream &o, Load)
Definition Load.cpp:327
unknown_mode(value v)
Definition actionstatemachine/CommandLineOptions.ixx:14
const bool & version() const
Definition actionstatemachine/CommandLineOptions.ixx:122
const bool & help() const
Definition actionstatemachine/CommandLineOptions.ixx:116
bool version_
Definition actionstatemachine/CommandLineOptions.hxx:264
bool help_
Definition actionstatemachine/CommandLineOptions.hxx:263
Definition actionstatemachine/CommandLineOptions.cxx:15