| 3 | #include "IniFile.h" |
| 4 | |
| 5 | void Settings::Set(PCWSTR name, std::vector<std::wstring> const& values) { |
| 6 | Setting s(name, values); |
| 7 | _settings.erase(name); |
| 8 | _settings.insert({ name, std::move(s) }); |
| 9 | } |
| 10 | |
| 11 | bool Settings::LoadFromKey(PCWSTR registryPath) { |
| 12 | if (registryPath == nullptr) |
no outgoing calls
no test coverage detected