goptions
GOption Class Reference

Represents a configurable option with a name, value(s), description, and help text. More...

#include <goption.h>

Collaboration diagram for GOption:
Collaboration graph

Public Member Functions

 GOption (GVariable dv, string h)
 Constructor for a scalar option with a default value. More...
 
 GOption (string n, string desc, vector< GVariable > dv, string h)
 Constructor for a sequence option. More...
 
void set_sub_option_value (const string &subkey, const string &subvalue)
 Sets the value of a sub–option using dot–notation. More...
 

Detailed Description

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.

Constructor & Destructor Documentation

◆ GOption() [1/2]

GOption::GOption ( GVariable  dv,
string  h 
)
inline
Parameters
dvA GVariable containing the name, default value, and description of the option.
hHelp 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
nName of the option.
descSummary description of the option.
dvVector of GVariable objects representing each element's default value and description.
hHelp text for the option.

Definition at line 108 of file goption.h.

Member Function Documentation

◆ 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
subkeyThe sub–option key to update.
subvalueThe 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
subkeyThe key within the option to update.
subvalueThe 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: