| 163 | } |
| 164 | |
| 165 | std::wstring Settings::GetString(PCWSTR name) const { |
| 166 | auto it = _settings.find(name); |
| 167 | if (it == _settings.end()) |
| 168 | return L""; |
| 169 | return (PCWSTR)it->second.Buffer.get(); |
| 170 | } |
| 171 | |
| 172 | int Settings::GetInt32(PCWSTR name) const { |
| 173 | return GetValue<int>(name); |
no test coverage detected