@@ -31,16 +31,15 @@ /** * \brief A class describing a contact tracked by a XMPPContactManager */ @interface XMPPContact: OFObject { -/// \cond internal XMPPRosterItem *_rosterItem; OFMutableDictionary *_presences; XMPPJID *_lockedOnJID; -/// \endcond } + #ifdef OF_HAVE_PROPERTIES /// \brief The XMPPRosterItem corresponding to this contact @property (readonly) XMPPRosterItem *rosterItem; /// \brief The XMPPPresences of this contact with the resources as keys @property (readonly) OFDictionary *presences; @@ -53,13 +52,11 @@ * \param connection The connection to use for sending the message */ - (void)sendMessage: (XMPPMessage*)message connection: (XMPPConnection*)connection; -/// \cond internal - (void)XMPP_setRosterItem: (XMPPRosterItem*)rosterItem; - (void)XMPP_setPresence: (XMPPPresence*)presence resource: (OFString*)resource; - (void)XMPP_removePresenceForResource: (OFString*)resource; - (void)XMPP_setLockedOnJID: (XMPPJID*)JID; -/// \endcond @end