mirror of
https://github.com/Fishwaldo/qt-openzwave.git
synced 2025-07-12 16:18:22 +00:00
17 lines
No EOL
462 B
C++
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
|