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