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

17 lines
No EOL
504 B
C++

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