MQTTSettings.h 276 B

123456789101112131415161718192021
  1. #ifndef TOON_MQTTSETTINGS_H
  2. #define TOON_MQTTSETTINGS_H
  3. #include <string>
  4. namespace ToonBridge {
  5. namespace Toon {
  6. struct MQTTSettings
  7. {
  8. std::string hostname;
  9. int port;
  10. std::string topic;
  11. };
  12. } // namespace Toon
  13. } // namespace ToonBridge
  14. #endif // TOON_MQTTSETTINGS_H