aboutsummaryrefslogtreecommitdiff
path: root/source/QXmppClient.h
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2010-06-04 12:44:26 +0000
committerJeremy Lainé <jeremy.laine@m4x.org>2010-06-04 12:44:26 +0000
commite155e5658c178bea1c01ea70f4d04539a71b9f0a (patch)
tree954547ec22adf838d3207507f72afe0f517a6059 /source/QXmppClient.h
parent4d171d7900cfe892ca1eae00c65a2253f27e9252 (diff)
downloadqxmpp-e155e5658c178bea1c01ea70f4d04539a71b9f0a.tar.gz
move vCard manager out of QXmppStream
Diffstat (limited to 'source/QXmppClient.h')
-rw-r--r--source/QXmppClient.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/QXmppClient.h b/source/QXmppClient.h
index 23e8582a..dff4fbfa 100644
--- a/source/QXmppClient.h
+++ b/source/QXmppClient.h
@@ -47,6 +47,7 @@ class QXmppRemoteMethod;
struct QXmppRemoteMethodResult;
class QXmppArchiveManager;
class QXmppDiscoveryIq;
+class QXmppVCardManager;
class QXmppTransferManager;
/// \brief The QXmppClient class is the main class for using QXmpp.
@@ -208,9 +209,10 @@ private:
QXmppConfiguration m_config; ///< This object provides the configuration
///< required for connecting to the XMPP server.
QXmppPresence m_clientPresence; ///< Stores the current presence of the connected client
- QXmppArchiveManager *m_archiveManager; ///< Pointer to the archive manager
+ QXmppArchiveManager *m_archiveManager; ///< Pointer to the archive manager
QXmppReconnectionManager* m_reconnectionManager; ///< Pointer to the reconnection manager
- QXmppRoster *m_roster; ///< Pointer to the roster manager
+ QXmppRoster *m_roster; ///< Pointer to the roster manager
+ QXmppVCardManager *m_vCardManager; ///< Pointer to the vCard manager
QHash<QString,QXmppInvokable *> m_interfaces;
};