Command line argument parser.
More...
#include <arg_parser.h>
Command line argument parser.
- Example:
parser.addArgument(
"float_argument",
"description");
parser.addArgument(
"int_argument",
"description",
true);
parser.get<
int>(
"int_argument", 0);
bool b =
parser.check(
"float_argument");
}
Command line argument parser.
Definition arg_parser.h:64
Holds 2-dimensional integer index coordinates.
Definition index.h:50
◆ ArgParser()
hermes::ArgParser::ArgParser |
( |
std::string |
bin = "" , |
|
|
std::string |
description = "" |
|
) |
| |
|
explicit |
Constructor.
- Parameters
-
bin | executable name |
description | program description |
◆ addArgument()
void hermes::ArgParser::addArgument |
( |
const std::string & |
name, |
|
|
const std::string & |
description = "" , |
|
|
bool |
is_required = false |
|
) |
| |
Define program argument.
- Parameters
-
name | |
description | |
is_required | |
◆ check()
bool hermes::ArgParser::check |
( |
const std::string & |
name | ) |
const |
Checks if an argument was given.
- Parameters
-
- Returns
- true if argument was given
◆ get()
T hermes::ArgParser::get |
( |
const std::string & |
name, |
|
|
const T & |
default_value = {} |
|
) |
| const |
|
inline |
Get argument value.
- Template Parameters
-
- Parameters
-
- Returns
◆ getList()
std::vector< T > hermes::ArgParser::getList |
( |
const std::string & |
name, |
|
|
const std::vector< T > & |
default_value = {} |
|
) |
| const |
|
inline |
Get argument value as list.
- Template Parameters
-
- Parameters
-
- Returns
◆ parse()
Parse program arguments.
- Parameters
-
argc | |
argv | |
verbose_parsing | |
The documentation for this class was generated from the following files: