| 206 | } |
| 207 | |
| 208 | bool Settings::IsNumber( const char* const name ) const |
| 209 | { |
| 210 | const auto it = map_.find( SettingsStringContainer(name) ); |
| 211 | if( it == map_.cend() ) |
| 212 | return false; |
| 213 | |
| 214 | float f; |
| 215 | return StrToFloat( (*it).second.data(), &f ); |
| 216 | } |
| 217 | |
| 218 | const char* Settings::GetString( const char* const name, const char* const default_value ) const |
| 219 | { |
nothing calls this directly
no test coverage detected