mirror of
https://github.com/Fishwaldo/qt-openzwave.git
synced 2025-07-11 15:48:21 +00:00
16 lines
No EOL
526 B
C++
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);
|
|
} |