]> git.babelmonkeys.de Git - jubjub.git/blobdiff - src/core/JubChatClient.h
Add User Avatar support
[jubjub.git] / src / core / JubChatClient.h
index cacb72dcf2aae0721340362168e60a2e1046d1c4..168fa696aef080d9b2fbb528c5eaf91bd0c07b3f 100644 (file)
@@ -5,6 +5,8 @@
 #import "JubChatUI.h"
 #import "JubConfig.h"
 
+@class JubAvatarManager;
+
 @interface JubChatClient : OFObject
     <XMPPConnectionDelegate, XMPPRosterDelegate, XMPPContactManagerDelegate>
 {
        XMPPConnection *_connection;
        XMPPRoster *_roster;
        XMPPStreamManagement *_streamManagement;
+       JubAvatarManager *_avatarManager;
        XMPPContactManager *_contactManager;
+       XMPPDiscoEntity *_discoEntity;
        XMPPPresence *_presence;
        id<JubUI> _ui;
 }
 @property (readonly) XMPPConnection *connection;
 @property (readonly) XMPPRoster *roster;
+@property (readonly) JubAvatarManager *avatarManager;
 @property (readonly) XMPPContactManager *contactManager;
+@property (readonly) XMPPDiscoEntity *discoEntity;
 @property (readonly) XMPPPresence *presence;
 @property (assign) id<JubUI> ui;