akonadi/contact
recentcontactscollectionrequestjob.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef AKONADI_RECENTCONTACTSCOLLECTIONREQUESTJOB_H
00023 #define AKONADI_RECENTCONTACTSCOLLECTIONREQUESTJOB_H
00024
00025 #include "akonadi-contact_export.h"
00026
00027 #include <akonadi/specialcollectionsrequestjob.h>
00028
00029 namespace Akonadi {
00030
00031 class RecentContactsCollectionRequestJobPrivate;
00032
00065 class AKONADI_CONTACT_EXPORT RecentContactsCollectionRequestJob : public SpecialCollectionsRequestJob
00066 {
00067 Q_OBJECT
00068
00069 public:
00073 explicit RecentContactsCollectionRequestJob( QObject *parent = 0 );
00074
00078 ~RecentContactsCollectionRequestJob();
00079
00083 void requestDefaultCollection();
00084
00088 void requestCollection( const AgentInstance &instance );
00089
00090 private:
00091
00092 friend class RecentContactsCollectionRequestJobPrivate;
00093
00094 RecentContactsCollectionRequestJobPrivate *const d;
00095
00096 };
00097
00098 }
00099
00100 #endif