Message.h 179 B

1234567891011121314151617
  1. #ifndef MESSAGE_H
  2. #define MESSAGE_H
  3. #include <string>
  4. namespace MQTT {
  5. struct Message
  6. {
  7. std::string topic;
  8. std::string payload;
  9. };
  10. } // namespace MQTT
  11. #endif // MESSAGE_H