00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef MAILTRANSPORT_RESOURCESENDJOB_P_H
00021 #define MAILTRANSPORT_RESOURCESENDJOB_P_H
00022
00023 #include <mailtransport/transportjob.h>
00024
00025 #include <akonadi/item.h>
00026
00027 namespace MailTransport {
00028
00029 class ResourceSendJobPrivate;
00030
00044 class MAILTRANSPORT_DEPRECATED ResourceSendJob : public TransportJob
00045 {
00046 Q_OBJECT
00047 public:
00053 explicit ResourceSendJob( Transport *transport, QObject *parent = 0 );
00054
00058 virtual ~ResourceSendJob();
00059
00060 protected:
00062 virtual void doStart();
00063
00064 private:
00065 friend class ResourceSendJobPrivate;
00066 ResourceSendJobPrivate *const d;
00067
00068 Q_PRIVATE_SLOT( d, void slotEmitResult() )
00069
00070 };
00071
00072 }
00073
00074 #endif // MAILTRANSPORT_RESOURCESENDJOB_H