qt-openzwave/qt-ozwdaemon/mqttcommands/checkLatestMFSRevision.cpp

16 lines
No EOL
526 B
C++

#include "mqttcommands/checkLatestMFSRevision.h"
MqttCommand_CheckLatestMFSRevision::MqttCommand_CheckLatestMFSRevision(QObject *parent) :
MqttCommand(parent)
{
}
MqttCommand* MqttCommand_CheckLatestMFSRevision::Create(QObject *parent) {
return new MqttCommand_CheckLatestMFSRevision(parent);
}
bool MqttCommand_CheckLatestMFSRevision::processMessage(rapidjson::Document &msg) {
Q_UNUSED(msg);
QTOZWManager *mgr = getOZWManager();
mgr->checkLatestMFSRevision();
return this->sendSimpleStatus(true);
}