diff options
Diffstat (limited to 'src/configuration.h')
-rw-r--r-- | src/configuration.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/configuration.h b/src/configuration.h index e0377aace..a0a790990 100644 --- a/src/configuration.h +++ b/src/configuration.h @@ -265,6 +265,10 @@ class Configuration : public ConfigurationObject inline void setValue(const std::string &key, bool value) { setValue(key, value ? "1" : "0"); } + int resetIntValue(const std::string &key); + + bool resetBoolValue(const std::string &key); + const std::string getConfigPath() const { return mConfigPath; } |