Represents a configurable option with a name, value(s), description, and help text.
More...
#include <goption.h>
The GOption class is used to define options from a YAML configuration node. Options can be scalar or sequences, and they can have default values or be cumulative. This class encapsulates the logic to set values from YAML nodes and command-line arguments.
Definition at line 89 of file goption.h.
◆ GOption() [1/2]
- Parameters
-
dv | A GVariable containing the name, default value, and description of the option. |
h | Help text for the option. |
Definition at line 96 of file goption.h.
◆ GOption() [2/2]
GOption::GOption |
( |
string |
n, |
|
|
string |
desc, |
|
|
vector< GVariable > |
dv, |
|
|
string |
h |
|
) |
| |
|
inline |
- Parameters
-
n | Name of the option. |
desc | Summary description of the option. |
dv | Vector of GVariable objects representing each element's default value and description. |
h | Help text for the option. |
Definition at line 108 of file goption.h.
◆ set_sub_option_value()
void GOption::set_sub_option_value |
( |
const string & |
subkey, |
|
|
const string & |
subvalue |
|
) |
| |
For example, a command-line argument like "-verbosity.general=2" will update the sub–option identified by "general" within the "verbosity" option.
- Parameters
-
subkey | The sub–option key to update. |
subvalue | The new value for the sub–option, given as a string. |
For options that are structured as maps or sequences of maps, this function updates a single sub–option (e.g. for "-debug.general=true", it updates the "general" key within "debug").
- Parameters
-
subkey | The key within the option to update. |
subvalue | The new value for the sub–option as a string. |
Definition at line 183 of file goption.cc.
The documentation for this class was generated from the following files: