mirror of
https://github.com/Fishwaldo/qt-openzwave.git
synced 2025-07-12 16:18:22 +00:00
17 lines
No EOL
522 B
C++
17 lines
No EOL
522 B
C++
#ifndef HEALNETWORKNODE_H
|
|
#define HEALNETWORKNODE_H
|
|
|
|
#include "mqttcommands/mqttcommands.h"
|
|
|
|
class MqttCommand_HealNetworkNode : public MqttCommand {
|
|
Q_OBJECT
|
|
public:
|
|
static MqttCommand *Create(QObject *parent = nullptr);
|
|
static QString StaticGetCommand() { return "HealNetworkNode";};
|
|
QString GetCommand() override { return StaticGetCommand(); };
|
|
bool processMessage(rapidjson::Document &) override;
|
|
private:
|
|
MqttCommand_HealNetworkNode(QObject *parent = nullptr);
|
|
};
|
|
|
|
#endif // HEALNETWORKNODE_H
|