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_string_list_h_HEADER_GUARD_
00023 #define _TelepathyQt4_cli_pending_string_list_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
00031 #include <QStringList>
00032
00033 namespace Telepathy
00034 {
00035 namespace Client
00036 {
00037
00038 class PendingStringList : public PendingOperation
00039 {
00040 Q_OBJECT
00041
00042 public:
00043 PendingStringList(QObject *parent = 0);
00044 ~PendingStringList();
00045
00046 QStringList result() const;
00047
00048 protected:
00049 void setResult(const QStringList &result);
00050
00051 private:
00052 Q_DISABLE_COPY(PendingStringList);
00053
00054 struct Private;
00055 friend struct Private;
00056 Private *mPriv;
00057 };
00058
00059 }
00060 }
00061
00062 #endif