mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 15:21:40 +00:00
COMMON: ConfMan::Domain::tryGetVal
This commit is contained in:
parent
d83a38e0e6
commit
ee4799c51a
@ -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(); }
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user