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

17 lines
No EOL
558 B
C++

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