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:
16 Factory(const QString& _serverAddress = QString());
17 virtual ~Factory();
18 AbstractSendingCommunicationInterface* createSendingInterface(const QString& _communicationNamespace) override;
19 AbstractReceivingCommunicationInterface* createReceivingInterface(const QString& _communicationNamespace) override;
20 private:
21 struct Private;
22 Private* const d = nullptr;
23 };
24}
25
26
Definition AbstractCommunicationInterfaces.h:47
Definition AbstractCommunicationInterfaces.h:35
Definition AbstractCommunicationInterfaces.h:27
Definition MQTTCommunicationInterfaces.h:11
Factory(const QString &_serverAddress=QString())
Definition MQTTCommunicationInterfaces.cpp:173
Definition MQTTCommunicationInterfaces.cpp:169