argagg
 All Classes Namespaces Files Functions Variables Macros Pages
Class List
Here are the classes, structs, unions and interfaces with brief descriptions:
[detail level 12]
oNargaggThere are only two hard things in Computer Science: cache invalidation and naming things (Phil Karlton)
|oNconvertThe set of template instantiations that convert C-strings to other types for the option_result::as(), option_results::as(), parser_results::as(), and parser_results::all_as() methods are placed in this namespace
|oCunexpected_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
|oCunexpected_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
|oCoption_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
|oCinvalid_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
|oCoption_resultRepresents a single option parse result
|oCoption_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
|oCparser_resultsRepresents all results of the parser including options and positional arguments
|oCdefinitionAn option definition which essentially represents what an option is
|oCparser_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
|oCparserA list of option definitions used to inform how to parse arguments
|\Cfmt_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
\NstdSTL namespace