| 294 | } |
| 295 | |
| 296 | bool Settings::GetOrSetBool( const char* const name, const bool default_value ) |
| 297 | { |
| 298 | return GetOrSetInt( name, default_value ? 1 : 0 ) != 0; |
| 299 | } |
| 300 | |
| 301 | void Settings::GetSettingsKeysStartsWith( |
| 302 | const char* const settings_key_start, |
no outgoing calls
no test coverage detected