Files
ToonBridge/Toon/MQTTSettings.h
T
2020-06-16 09:43:20 +02:00

22 lines
276 B
C++

#ifndef TOON_MQTTSETTINGS_H
#define TOON_MQTTSETTINGS_H
#include <string>
namespace ToonBridge {
namespace Toon {
struct MQTTSettings
{
std::string hostname;
int port;
std::string topic;
};
} // namespace Toon
} // namespace ToonBridge
#endif // TOON_MQTTSETTINGS_H