BeeeOn Gateway  v2020.3.1-2-g6f737dc
Platform to interconnect the IoT world
GatewayMosquittoClient.h
1 #pragma once
2 
3 #include <string>
4 
5 #include <Poco/SharedPtr.h>
6 
7 #include "core/GatewayInfo.h"
8 #include "net/MosquittoClient.h"
9 
10 namespace BeeeOn {
11 
19 public:
20  void setGatewayInfo(Poco::SharedPtr<GatewayInfo> info);
21 
22  std::string buildClientID() const override;
23 
24 private:
25  Poco::SharedPtr<GatewayInfo> m_gatewayInfo;
26 };
27 
28 }
Definition: GatewayMosquittoClient.h:18
Definition: MosquittoClient.h:31