| 19 | namespace Valdi { |
| 20 | |
| 21 | bool ValdiRuntimeTweaks::getConfigKey(const char* key) const { |
| 22 | auto configKey = StringCache::getGlobal().makeStringFromLiteral(std::string_view(key)); |
| 23 | return _tweakValueProvider->getBool(configKey, false); |
| 24 | } |
| 25 | |
| 26 | ValdiRuntimeTweaks::ValdiRuntimeTweaks(const Shared<ITweakValueProvider>& tweakValueProvider) |
| 27 | : _tweakValueProvider(tweakValueProvider) {} |
nothing calls this directly
no test coverage detected