Initial Commit

This commit is contained in:
2020-06-12 11:31:09 +02:00
commit 859e336eca
14 changed files with 365 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef MESSAGE_H
#define MESSAGE_H
#include <string>
namespace MQTT {
struct Message
{
std::string topic;
std::string payload;
};
} // namespace MQTT
#endif // MESSAGE_H