| 266 | } |
| 267 | |
| 268 | bool INISettingsInterface::ContainsValue(const char* section, const char* key) const |
| 269 | { |
| 270 | return (m_ini.GetValue(section, key, nullptr) != nullptr); |
| 271 | } |
| 272 | |
| 273 | void INISettingsInterface::DeleteValue(const char* section, const char* key) |
| 274 | { |
no test coverage detected