mirror of
https://github.com/Fishwaldo/qt-openzwave.git
synced 2025-07-16 18:18:19 +00:00
17 lines
No EOL
556 B
C++
17 lines
No EOL
556 B
C++
#ifndef CHECKLATESTMFSREVISION_H
|
|
#define CHECKLATESTMFSREVISION_H
|
|
|
|
#include "mqttcommands/mqttcommands.h"
|
|
|
|
class MqttCommand_CheckLatestMFSRevision : public MqttCommand {
|
|
Q_OBJECT
|
|
public:
|
|
static MqttCommand *Create(QObject *parent = nullptr);
|
|
static QString StaticGetCommand() { return "CheckLatestMFSRevision";};
|
|
QString GetCommand() override { return StaticGetCommand(); };
|
|
bool processMessage(QJsonDocument) override;
|
|
private:
|
|
MqttCommand_CheckLatestMFSRevision(QObject *parent = nullptr);
|
|
};
|
|
|
|
#endif // CHECKLATESTMFSREVISION_H
|