| 8 | ConfigContainer::ConfigContainer() = default; |
| 9 | |
| 10 | void ConfigContainer::setValue(const QString &key, |
| 11 | QVariant value) |
| 12 | { |
| 13 | map[key] = std::move(value); |
| 14 | } |
| 15 | |
| 16 | QVariant ConfigContainer::getVariant(const QString &key, |
| 17 | bool silent, |
no outgoing calls
no test coverage detected