#include <droption.h>
Inherits droption_parser_t.
|
| droption_t (unsigned int scope_, std::string name_, T defval_, std::string desc_short_, std::string desc_long_) |
|
| droption_t (unsigned int scope_, std::string name_, unsigned int flags_, T defval_, std::string desc_short_, std::string desc_long_) |
|
| droption_t (unsigned int scope_, std::string name_, unsigned int flags_, std::string valsep_, T defval_, std::string desc_short_, std::string desc_long_) |
|
| droption_t (unsigned int scope_, std::string name_, T defval_, T minval_, T maxval_, std::string desc_short_, std::string desc_long_) |
|
T | get_value () const |
|
std::string | get_value_separator () const |
|
void | set_value (T new_value) |
|
bool | specified () |
|
std::string | get_name () |
|
|
static bool | parse_argv (unsigned int scope, int argc, const char *argv[], std::string *error_msg, int *last_index) |
|
static std::string | usage_short (unsigned int scope) |
|
static std::string | usage_long (unsigned int scope, std::string pre_name="----------\, std::string post_name="\", std::string pre_value="", std::string post_value="\", std::string pre_desc="", std::string post_desc="\") |
|
template<typename T>
class droption_t< T >
Option class for declaring new options.
◆ droption_t() [1/4]
template<typename T>
droption_t< T >::droption_t |
( |
unsigned int |
scope_, |
|
|
std::string |
name_, |
|
|
T |
defval_, |
|
|
std::string |
desc_short_, |
|
|
std::string |
desc_long_ |
|
) |
| |
|
inline |
Declares a new option of type T with the given scope, default value, and description in short and long forms.
◆ droption_t() [2/4]
template<typename T>
droption_t< T >::droption_t |
( |
unsigned int |
scope_, |
|
|
std::string |
name_, |
|
|
unsigned int |
flags_, |
|
|
T |
defval_, |
|
|
std::string |
desc_short_, |
|
|
std::string |
desc_long_ |
|
) |
| |
|
inline |
Declares a new option of type T with the given scope, behavior flags, default value, and description in short and long forms.
◆ droption_t() [3/4]
template<typename T>
droption_t< T >::droption_t |
( |
unsigned int |
scope_, |
|
|
std::string |
name_, |
|
|
unsigned int |
flags_, |
|
|
std::string |
valsep_, |
|
|
T |
defval_, |
|
|
std::string |
desc_short_, |
|
|
std::string |
desc_long_ |
|
) |
| |
|
inline |
Declares a new option of type T with the given scope, behavior flags, accumulated value separator (see DROPTION_FLAG_ACCUMULATE), default value, and description in short and long forms.
◆ droption_t() [4/4]
template<typename T>
droption_t< T >::droption_t |
( |
unsigned int |
scope_, |
|
|
std::string |
name_, |
|
|
T |
defval_, |
|
|
T |
minval_, |
|
|
T |
maxval_, |
|
|
std::string |
desc_short_, |
|
|
std::string |
desc_long_ |
|
) |
| |
|
inline |
Declares a new option of type T with the given scope, default value, minimum and maximum values, and description in short and long forms.
◆ get_value()
Returns the value of this option.
◆ get_value_separator()
template<typename T>
std::string droption_t< T >::get_value_separator |
( |
| ) |
const |
|
inline |
◆ set_value()
Sets the value of this option, overriding the command line.
The documentation for this class was generated from the following file: