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