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

17 lines
No EOL
544 B
C++

#ifndef DELETEALLRETURNROUTE_H
#define DELETEALLRETURNROUTE_H
#include "mqttcommands/mqttcommands.h"
class MqttCommand_DeleteAllReturnRoute : public MqttCommand {
Q_OBJECT
public:
static MqttCommand *Create(QObject *parent = nullptr);
static QString StaticGetCommand() { return "DeleteAllReturnRoute";};
QString GetCommand() override { return StaticGetCommand(); };
bool processMessage(QJsonDocument) override;
private:
MqttCommand_DeleteAllReturnRoute(QObject *parent = nullptr);
};
#endif // DELETEALLRETURNROUTE_H