* Constructor. * * @param parent parent object */
| 42 | * @param parent parent object |
| 43 | */ |
| 44 | QmlCommandPlugin::QmlCommandPlugin(QObject* parent) : QObject(parent), |
| 45 | m_app(nullptr), m_qmlView(nullptr), m_qmlEngine(nullptr), m_showOutput(false) |
| 46 | { |
| 47 | setObjectName(QLatin1String("QmlCommand")); |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * Get keys of available user commands. |
nothing calls this directly
no outgoing calls
no test coverage detected