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