Rename Message and Cleanup

This commit is contained in:
2020-06-12 11:52:57 +02:00
parent 859e336eca
commit 8422bc503d
5 changed files with 14 additions and 13 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef MQTTMESSAGE_H
#define MQTTMESSAGE_H
#include <string>
namespace MQTT {
struct MQTTMessage
{
std::string topic;
std::string payload;
};
} // namespace MQTT
#endif // MQTTMESSAGE_H