COMMON: Add setVal to ConfigManager::Domain.

This fixes compilation in the keymapper.
This commit is contained in:
Johannes Schickel 2013-08-13 00:11:46 +02:00
parent d811df89ff
commit 7c2660c97e

View File

@ -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); }