|
| DEFINE_int32 (verbosity, 3, "Verbosity is set within a range between [0-4]") |
|
| DEFINE_string (yaml_file_path, "", "Path to the configuration YAML file") |
|
static bool | ValidateVerbosity (const char *flagname, int32_t value) |
|
static bool | ValidateConfigFilePath (const char *flagname, const std::string &value) |
|
| DEFINE_validator (verbosity, &ValidateVerbosity) |
|
| DEFINE_validator (yaml_file_path, &ValidateConfigFilePath) |
|
void | ParseCommandLineFlags (int argc, char **argv, bool remove_flags) |
| Parses the command line flags. More...
|
|
void | SetUsageMessage () |
| Sets the usage message. More...
|
|
int | GetVerbosity () |
|
std::string | GetYamlFilePath () |
|