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

17 lines
No EOL
528 B
C++

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