00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef _TelepathyQt4_cli_pending_ready_h_HEADER_GUARD_
00023 #define _TelepathyQt4_cli_pending_ready_h_HEADER_GUARD_
00024
00025 #ifndef IN_TELEPATHY_QT4_HEADER
00026 #error IN_TELEPATHY_QT4_HEADER
00027 #endif
00028
00029 #include <TelepathyQt4/Client/PendingOperation>
00030 #include <TelepathyQt4/Client/ReadinessHelper>
00031
00032 #include <QSet>
00033
00034 namespace Telepathy
00035 {
00036 namespace Client
00037 {
00038
00039 class PendingReady: public PendingOperation
00040 {
00041 Q_OBJECT
00042
00043 public:
00044 PendingReady(const Features &requestedFeatures, QObject *object);
00045 ~PendingReady();
00046
00047 QObject *object() const;
00048
00049 Features requestedFeatures() const;
00050
00051 private:
00052 Q_DISABLE_COPY(PendingReady);
00053
00054 struct Private;
00055 friend struct Private;
00056 friend class ReadinessHelper;
00057 Private *mPriv;
00058 };
00059
00060 }
00061 }
00062
00063 #endif