argagg
 All Classes Namespaces Files Functions Variables Macros Pages
Class Hierarchy
This inheritance list is sorted roughly, but not completely, alphabetically:
[detail level 123456]
oCargagg::definitionAn option definition which essentially represents what an option is
oCstd::exception [external]STL class
|\Cstd::runtime_error [external]STL class
| oCargagg::invalid_flagThis exception is thrown when an option's flag is invalid. This can be the case if the flag is not prefixed by one or two hyphens or contains non alpha-numeric characters after the hypens. See is_valid_flag_definition() for more details
| oCargagg::option_lacks_argument_errorThis exception is thrown when an option requires an argument but is not provided one. This can happen if another flag was found after the option or if we simply reach the end of the command line arguments
| oCargagg::unexpected_argument_errorThis exception is thrown when a long option is parsed and is given an argument using the "=" syntax but the option doesn't expect an argument
| \Cargagg::unexpected_option_errorThis exception is thrown when an option is parsed unexpectedly such as when an argument was expected for a previous option or if an option was found that has not been defined
oCstd::ios_base [external]STL class
|oCstd::basic_ios< char > [external]
||\Cstd::basic_ostream< char > [external]
|| \Cstd::basic_ostringstream< char > [external]
||  \Cstd::ostringstream [external]STL class
||   \Cargagg::fmt_ostreamA convenience output stream that will accumulate what is streamed to it and then, on destruction, format the accumulated string using the fmt program (via the argagg::fmt_string() function) to the provided std::ostream
|\Cstd::basic_ios< Char > [external]STL class
| \Cstd::basic_ostream< Char > [external]STL class
oCargagg::option_resultRepresents a single option parse result
oCargagg::option_resultsRepresents multiple option parse results for a single option. If treated as a single parse result it defaults to the last parse result. Note that an instance of this struct is always created even if no option results are parsed for a given definition. In that case it will simply be empty
oCargagg::parserA list of option definitions used to inform how to parse arguments
oCargagg::parser_mapContains two maps which aid in option parsing. The first map, short_map, maps from a short flag (just a character) to a pointer to the original definition that the flag represents. The second map, long_map, maps from a long flag (an std::string) to a pointer to the original definition that the flag represents
\Cargagg::parser_resultsRepresents all results of the parser including options and positional arguments