#include <orsa_config.h>
Public Member Functions | |
ConfigItem (const std::string t) | |
ConfigItem (const T v, const std::string t) | |
T | GetValue () const |
void | SetValue (const T v) |
Public Attributes | |
const std::string | tag |
Definition at line 35 of file orsa_config.h.
ConfigItem | ( | const std::string | t | ) | [inline] |
Definition at line 37 of file orsa_config.h.
00037 : tag(t) { };
ConfigItem | ( | const T | v, | |
const std::string | t | |||
) | [inline] |
Definition at line 38 of file orsa_config.h.
00038 : value(v), tag(t) { };
T GetValue | ( | ) | const [inline] |
Definition at line 41 of file orsa_config.h.
void SetValue | ( | const T | v | ) | [inline] |
Definition at line 42 of file orsa_config.h.
const std::string tag |
Definition at line 48 of file orsa_config.h.