|
|
virtual Cfg & | first_time_initialization (void) |
| |
|
virtual Cfg & | insert_if_not_exist (const std::string &key, const std::string &val) |
| |
|
virtual Cfg & | insert_if_not_exist (const std::string &key, const int &val) |
| |
|
virtual Cfg & | set_str (const std::string &key, const std::string &val) |
| |
| virtual std::string | get_str (const std::string &key) |
| | The key must exist, otherwise an exception is thrown. More...
|
| |
| virtual std::string | get_str (const std::string &key, const std::string &default_value) |
| | Return the corresponding value, or the default value if the key does not exist. More...
|
| |
| virtual int | get_int (const std::string &key) |
| | The key must exist, otherwise an exception is thrown. More...
|
| |
| virtual bool | get_bool (const std::string &key, const bool default_value=true) |
| | Return the corresponding value, or the default value if the key does not exist. More...
|
| |