Index: Doxyfile ================================================================== --- Doxyfile +++ Doxyfile @@ -4,5 +4,6 @@ FILE_PATTERNS = *.h *.m HTML_OUTPUT = . GENERATE_LATEX = NO HIDE_UNDOC_CLASSES = YES PREDEFINED = OF_HAVE_PROPERTIES +IGNORE_PREFIX = XMPP Index: src/XMPPAuthenticator.h ================================================================== --- src/XMPPAuthenticator.h +++ src/XMPPAuthenticator.h @@ -25,13 +25,15 @@ /** * \brief A base class for classes implementing authentication mechanisms */ @interface XMPPAuthenticator: OFObject { +/// \cond internal OFString *authzid; OFString *authcid; OFString *password; +/// \endcond } #ifdef OF_HAVE_PROPERTIES /// The authzid to get authorization for @property (copy) OFString *authzid; Index: src/XMPPConnection.h ================================================================== --- src/XMPPConnection.h +++ src/XMPPConnection.h @@ -133,10 +133,11 @@ @interface XMPPConnection: OFObject #ifdef OF_HAVE_OPTONAL_PROTOCOLS #endif { +/// \cond internal id sock; OFXMLParser *parser, *oldParser; OFXMLElementBuilder *elementBuilder, *oldElementBuilder; OFString *username, *password, *server, *resource; OFString *privateKeyFile, *certificateFile; @@ -148,10 +149,11 @@ XMPPAuthenticator *authModule; BOOL streamOpen; BOOL needsSession; BOOL encryptionRequired, encrypted; unsigned int lastID; +/// \endcond } #ifdef OF_HAVE_PROPERTIES @property (copy) OFString *username; @property (copy) OFString *password; Index: src/XMPPExceptions.h ================================================================== --- src/XMPPExceptions.h +++ src/XMPPExceptions.h @@ -28,11 +28,13 @@ /** * \brief A base class for XMPP related exceptions */ @interface XMPPException: OFException { +/// \cond internal XMPPConnection *connection; +/// \end } #ifdef OF_HAVE_PROPERTIES /// The connection the exception relates to @property (readonly, assign) XMPPConnection *connection; @@ -66,12 +68,14 @@ /** * \brief An exception indicating a stream error was received */ @interface XMPPStreamErrorException: XMPPException { +/// \cond internal OFString *condition; OFString *reason; +/// \endcond } #ifdef OF_HAVE_PROPERTIES /// The defined error condition specified by the stream error @property (readonly, assign) OFString *condition; @@ -115,12 +119,14 @@ * \brief An exception indicating a stringprep profile * did not apply to a string */ @interface XMPPStringPrepFailedException: XMPPException { +/// \cond internal OFString *profile; OFString *string; +/// \endcond } #ifdef OF_HAVE_PROPERTIES /// The name of the stringprep profile that did not apply @property (readonly, assign) OFString *profile; @@ -163,12 +169,14 @@ /** * \brief An exception indicating IDNA translation of a string failed */ @interface XMPPIDNATranslationFailedException: XMPPException { +/// \cond internal OFString *operation; OFString *string; +/// \endcond } #ifdef OF_HAVE_PROPERTIES /// The IDNA translation operation which failed @property (readonly, assign) OFString *operation; @@ -211,11 +219,13 @@ /** * \brief An exception indicating authentication failed */ @interface XMPPAuthFailedException: XMPPException { +/// \cond internal OFString *reason; +/// \endcond } #ifdef OF_HAVE_PROPERTIES /// The reason the authentication failed @property (readonly, assign) OFString *reason; Index: src/XMPPJID.h ================================================================== --- src/XMPPJID.h +++ src/XMPPJID.h @@ -26,13 +26,15 @@ /** * \brief A class for easy handling of JIDs. */ @interface XMPPJID: OFObject { +/// \cond internal OFString *node; OFString *domain; OFString *resource; +/// \endcond } #ifdef OF_HAVE_PROPERTIES /// The JID's localpart @property (copy) OFString *node; Index: src/XMPPMulticastDelegate.h ================================================================== --- src/XMPPMulticastDelegate.h +++ src/XMPPMulticastDelegate.h @@ -27,11 +27,13 @@ /** * \brief A class to provide multiple delegates in a single class */ @interface XMPPMulticastDelegate: OFObject { +/// \cond internal OFDataArray *delegates; +/// \endcond } /** * Adds a delegate to the set of managed delegates * Index: src/XMPPRoster.h ================================================================== --- src/XMPPRoster.h +++ src/XMPPRoster.h @@ -65,13 +65,15 @@ @interface XMPPRoster: OFObject #ifdef OF_HAVE_OPTIONAL_PROTOCOLS #endif { +/// \cond internal XMPPConnection *connection; OFMutableDictionary *rosterItems; XMPPMulticastDelegate *delegates; +/// \endcond } /** * Initializes an already allocated XMPPRoster * Index: src/XMPPRosterItem.h ================================================================== --- src/XMPPRosterItem.h +++ src/XMPPRosterItem.h @@ -22,16 +22,21 @@ #import @class XMPPJID; +/** + * \brief A class for representing an item in the roster. + */ @interface XMPPRosterItem: OFObject { +/// \cond intenral XMPPJID *JID; OFString *name; OFString *subscription; OFArray *groups; +/// \endcond } #ifdef OF_HAVE_PROPERTIES @property (copy) XMPPJID *JID; @property (copy) OFString *name; Index: src/XMPPSCRAMAuth.h ================================================================== --- src/XMPPSCRAMAuth.h +++ src/XMPPSCRAMAuth.h @@ -27,18 +27,20 @@ /** * \brief A class to authenticate using SCRAM */ @interface XMPPSCRAMAuth: XMPPAuthenticator { +/// \cond internal Class hashType; OFString *cNonce; OFString *GS2Header; OFString *clientFirstMessageBare; OFDataArray *serverSignature; XMPPConnection *connection; BOOL plusAvailable; BOOL authenticated; +/// \endcond } /** * Creates a new autoreleased XMPPSCRAMAuth with an authcid and password. * Index: src/XMPPStanza.h ================================================================== --- src/XMPPStanza.h +++ src/XMPPStanza.h @@ -28,14 +28,16 @@ /** * \brief A class describing an XMPP Stanza. */ @interface XMPPStanza: OFXMLElement { +/// \cond internal XMPPJID *from; XMPPJID *to; OFString *type; OFString *ID; +/// \endcond } #ifdef OF_HAVE_PROPERTIES /// The value of the stanza's from attribute @property (copy) XMPPJID *from;