knowL: Knowledge Libraries
Loading...
Searching...
No Matches
MQTTCommunicationInterfaces.h
1#include "AbstractCommunicationInterfaces.h"
2
3namespace Cyqlops::MQTT
4{
5 class Client;
6}
7
8namespace knowDataTransfert::MQTTCommunicationInterfaces
9{
11 {
12 public:
17 Factory(const QString& _serverAddress = QString());
18 virtual ~Factory();
20 createSendingInterface(const QString& _communicationNamespace) override;
22 createReceivingInterface(const QString& _communicationNamespace) override;
23 private:
24 struct Private;
25 Private* const d = nullptr;
26 };
27} // namespace knowDataTransfert::MQTTCommunicationInterfaces
Definition AbstractCommunicationInterfaces.h:47
Definition AbstractCommunicationInterfaces.h:35
Definition AbstractCommunicationInterfaces.h:27
Definition MQTTCommunicationInterfaces.h:11
Factory(const QString &_serverAddress=QString())
Definition MQTTCommunicationInterfaces.cpp:169
Definition MQTTCommunicationInterfaces.cpp:165