mlpack
|
This converter works with INI/TOML files; to write INI files use ConfigINI. More...
#include <CLI11.hpp>
Public Member Functions | |
std::string | to_config (const App *, bool default_also, bool write_description, std::string prefix) const override |
Convert an app into a configuration. | |
std::vector< ConfigItem > | from_config (std::istream &input) const override |
Convert a configuration into an app. | |
ConfigBase * | comment (char cchar) |
Specify the configuration for comment characters. | |
ConfigBase * | arrayBounds (char aStart, char aEnd) |
Specify the start and end characters for an array. | |
ConfigBase * | arrayDelimiter (char aSep) |
Specify the delimiter character for an array. | |
ConfigBase * | valueSeparator (char vSep) |
Specify the delimiter between a name and value. | |
ConfigBase * | quoteCharacter (char qString, char qChar) |
Specify the quote characters used around strings and characters. | |
![]() | |
virtual std::string | to_flag (const ConfigItem &item) const |
Get a flag value. | |
std::vector< ConfigItem > | from_file (const std::string &name) |
Parse a config file, throw an error (ParseError:ConfigParseError or FileError) on failure. | |
virtual | ~Config ()=default |
Virtual destructor. | |
Protected Attributes | |
char | commentChar = '#' |
the character used for comments | |
char | arrayStart = '[' |
the character used to start an array '\0' is a default to not use | |
char | arrayEnd = ']' |
the character used to end an array '\0' is a default to not use | |
char | arraySeparator = ',' |
the character used to separate elements in an array | |
char | valueDelimiter = '=' |
the character used separate the name from the value | |
char | stringQuote = '"' |
the character to use around strings | |
char | characterQuote = '\'' |
the character to use around single characters | |
![]() | |
std::vector< ConfigItem > | items {} |
This converter works with INI/TOML files; to write INI files use ConfigINI.