knowL: Knowledge Libraries
Loading...
Searching...
No Matches
SendJob_p.h
1#include "Forward.h"
2
3namespace knowDataTransfert
4{
5 class SendJob
6 {
7 public:
8 SendJob(const QString& _name, const QStringList& _receivers, Interfaces::SendIterator* _iterator, AbstractSendingCommunicationInterface* _sendingInterface);
9 ~SendJob();
10 QString communicationNamespace() const;
11 void abort();
12 void waitForFinished();
13 private:
14 struct Private;
15 Private* const d;
16 };
17}
18
Definition AbstractCommunicationInterfaces.h:27
Definition SendJob_p.h:6
Definition SendJob.cpp:19