mirror of
https://github.com/Fishwaldo/qt-openzwave.git
synced 2025-07-11 07:38:21 +00:00
15 lines
No EOL
523 B
C++
15 lines
No EOL
523 B
C++
#include "mqttcommands/cancelControllerCommand.h"
|
|
|
|
MqttCommand_CancelControllerCommand::MqttCommand_CancelControllerCommand(QObject *parent) :
|
|
MqttCommand(parent)
|
|
{
|
|
}
|
|
MqttCommand* MqttCommand_CancelControllerCommand::Create(QObject *parent) {
|
|
return new MqttCommand_CancelControllerCommand(parent);
|
|
}
|
|
|
|
bool MqttCommand_CancelControllerCommand::processMessage(rapidjson::Document &msg) {
|
|
Q_UNUSED(msg);
|
|
QTOZWManager *mgr = getOZWManager();
|
|
return this->sendSimpleStatus(mgr->cancelControllerCommand());
|
|
} |