akonadi
itemdeletejob.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef AKONADI_ITEMDELETEJOB_H
00021 #define AKONADI_ITEMDELETEJOB_H
00022
00023 #include "akonadi_export.h"
00024
00025 #include <akonadi/job.h>
00026
00027 namespace Akonadi {
00028
00029 class Item;
00030 class ItemDeleteJobPrivate;
00031
00054 class AKONADI_EXPORT ItemDeleteJob : public Job
00055 {
00056 Q_OBJECT
00057
00058 public:
00065 explicit ItemDeleteJob( const Item &item, QObject *parent = 0 );
00066
00070 ~ItemDeleteJob();
00071
00072 protected:
00073 virtual void doStart();
00074
00075 private:
00076 Q_DECLARE_PRIVATE( ItemDeleteJob )
00077
00078
00079 Q_PRIVATE_SLOT( d_func(), void jobDone( KJob* ) )
00080
00081 };
00082
00083 }
00084
00085 #endif