18 lines
195 B
C++
18 lines
195 B
C++
#ifndef MQTTMESSAGE_H
|
|
#define MQTTMESSAGE_H
|
|
|
|
#include <string>
|
|
|
|
|
|
namespace MQTT {
|
|
|
|
struct MQTTMessage
|
|
{
|
|
std::string topic;
|
|
std::string payload;
|
|
};
|
|
|
|
} // namespace MQTT
|
|
|
|
#endif // MQTTMESSAGE_H
|