| 16 | #include "OverrideSetting.h" |
| 17 | |
| 18 | OverrideSetting::OverrideSetting(std::shared_ptr<Setting> other, std::shared_ptr<Setting> gate) |
| 19 | : Setting(other->configKeys(), QVariant()) |
| 20 | { |
| 21 | Q_ASSERT(other); |
| 22 | Q_ASSERT(gate); |
| 23 | m_other = other; |
| 24 | m_gate = gate; |
| 25 | } |
| 26 | |
| 27 | bool OverrideSetting::isOverriding() const |
| 28 | { |
nothing calls this directly
no test coverage detected