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

17 lines
No EOL
462 B
C++

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