COMMON: ConfMan::Domain::tryGetVal

This commit is contained in:
Henrik "Henke37" Andersson 2020-08-01 00:54:37 +02:00 committed by Eugene Sandulenko
parent d83a38e0e6
commit ee4799c51a

View File

@ -78,6 +78,7 @@ public:
String &getVal(const String &key) { return _entries.getVal(key); }
const String &getVal(const String &key) const { return _entries.getVal(key); }
bool tryGetVal(const String &key, String &out) const { return _entries.tryGetVal(key, out); }
void clear() { _entries.clear(); }