18 operator<< (std::ostream& os,
const exception& e)
26 inline unknown_option::
27 unknown_option (
const std::string& option)
32 inline const std::string& unknown_option::
40 inline unknown_argument::
41 unknown_argument (
const std::string& argument)
42 : argument_ (argument)
46 inline const std::string& unknown_argument::
54 inline missing_value::
55 missing_value (
const std::string& option)
60 inline const std::string& missing_value::
68 inline invalid_value::
69 invalid_value (
const std::string& option,
70 const std::string& value)
71 : option_ (option), value_ (value)
75 inline const std::string& invalid_value::
81 inline const std::string& invalid_value::
90 argv_scanner (
int& argc,
char** argv,
bool erase)
91 : i_ (1), argc_ (argc), argv_ (argv), erase_ (erase)
96 argv_scanner (
int start,
int& argc,
char** argv,
bool erase)
97 : i_ (start), argc_ (argc), argv_ (argv), erase_ (erase)
101 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
std::string file_
Definition actionstatemachine/CommandLineOptions.hxx:265
const bool & help() const
Definition actionstatemachine/CommandLineOptions.ixx:116
bool version_
Definition actionstatemachine/CommandLineOptions.hxx:264
const std::string & file() const
Definition actionstatemachine/CommandLineOptions.ixx:128
const std::string & directory() const
Definition cepgenerator/CommandLineOptions.ixx:132
std::string directory_
Definition cepgenerator/CommandLineOptions.hxx:263
bool help_
Definition actionstatemachine/CommandLineOptions.hxx:263
Definition actionstatemachine/CommandLineOptions.cxx:15