| 176 | } |
| 177 | |
| 178 | std::string Host::GetBaseStringSettingValue(const char* section, const char* key, const char* default_value /*= ""*/) |
| 179 | { |
| 180 | std::unique_lock lock(s_settings_mutex); |
| 181 | return s_layered_settings_interface.GetLayer(LayeredSettingsInterface::LAYER_BASE) |
| 182 | ->GetStringValue(section, key, default_value); |
| 183 | } |
| 184 | |
| 185 | SmallString Host::GetBaseSmallStringSettingValue(const char* section, const char* key, const char* default_value /*= ""*/) |
| 186 | { |
nothing calls this directly
no test coverage detected