qt-openzwave/qt-ozwdaemon/mqttcommands/downloadLatestConfigFileRevision.h

17 lines
No EOL
624 B
C++

#ifndef DOWNLOADLATESTCONFIGFILEREVISION_H
#define DOWNLOADLATESTCONFIGFILEREVISION_H
#include "mqttcommands/mqttcommands.h"
class MqttCommand_DownloadLatestConfigFileRevision : public MqttCommand {
Q_OBJECT
public:
static MqttCommand *Create(QObject *parent = nullptr);
static QString StaticGetCommand() { return "DownloadLatestConfigFileRevision";};
QString GetCommand() override { return StaticGetCommand(); };
bool processMessage(rapidjson::Document &) override;
private:
MqttCommand_DownloadLatestConfigFileRevision(QObject *parent = nullptr);
};
#endif // DOWNLOADLATESTCONFIGFILEREVISION_H