| 210 | } |
| 211 | |
| 212 | bool INISettingsInterface::GetStringValue(const char* section, const char* key, std::string* value) const |
| 213 | { |
| 214 | const char* str_value = m_ini.GetValue(section, key); |
| 215 | if (!str_value) |
| 216 | return false; |
| 217 | |
| 218 | value->assign(str_value); |
| 219 | return true; |
| 220 | } |
| 221 | |
| 222 | bool INISettingsInterface::GetStringValue(const char* section, const char* key, SmallStringBase* value) const |
| 223 | { |
no test coverage detected