aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/config-manager.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/config-manager.h b/common/config-manager.h
index a7c949902c..6bf56749c5 100644
--- a/common/config-manager.h
+++ b/common/config-manager.h
@@ -64,6 +64,8 @@ public:
String &operator[](const String &key) { return _entries[key]; }
const String &operator[](const String &key) const { return _entries[key]; }
+ void setVal(const String &key, const String &value) { _entries.setVal(key, value); }
+
String &getVal(const String &key) { return _entries.getVal(key); }
const String &getVal(const String &key) const { return _entries.getVal(key); }