| 116 | } |
| 117 | |
| 118 | bool MemorySettingsInterface::GetStringValue(const char* section, const char* key, std::string* value) const |
| 119 | { |
| 120 | const auto sit = m_sections.find(section); |
| 121 | if (sit == m_sections.end()) |
| 122 | return false; |
| 123 | |
| 124 | const auto iter = sit->second.find(key); |
| 125 | if (iter == sit->second.end()) |
| 126 | return false; |
| 127 | |
| 128 | *value = iter->second; |
| 129 | return true; |
| 130 | } |
| 131 | |
| 132 | bool MemorySettingsInterface::GetStringValue(const char* section, const char* key, SmallStringBase* value) const |
| 133 | { |
no test coverage detected