| 19 | #include "enginecheckoption.h" |
| 20 | |
| 21 | EngineCheckOption::EngineCheckOption(const QString& name, |
| 22 | const QVariant& value, |
| 23 | const QVariant& defaultValue, |
| 24 | const QString& alias) |
| 25 | : EngineOption(name, QMetaType::Bool, value, defaultValue, alias) |
| 26 | { |
| 27 | } |
| 28 | |
| 29 | EngineOption* EngineCheckOption::copy() const |
| 30 | { |
nothing calls this directly
no outgoing calls
no test coverage detected