Hide instance variables from the documentation.

This commit is contained in:
Jonathan Schleifer 2012-02-03 11:43:44 +01:00
parent 2efeee1a0d
commit 643552d5d9
10 changed files with 30 additions and 0 deletions

View file

@ -6,3 +6,4 @@ HTML_OUTPUT = .
GENERATE_LATEX = NO
HIDE_UNDOC_CLASSES = YES
PREDEFINED = OF_HAVE_PROPERTIES
IGNORE_PREFIX = XMPP

View file

@ -27,9 +27,11 @@
*/
@interface XMPPAuthenticator: OFObject
{
/// \cond internal
OFString *authzid;
OFString *authcid;
OFString *password;
/// \endcond
}
#ifdef OF_HAVE_PROPERTIES

View file

@ -135,6 +135,7 @@
<OFXMLParserDelegate, OFXMLElementBuilderDelegate>
#endif
{
/// \cond internal
id sock;
OFXMLParser *parser, *oldParser;
OFXMLElementBuilder *elementBuilder, *oldElementBuilder;
@ -150,6 +151,7 @@
BOOL needsSession;
BOOL encryptionRequired, encrypted;
unsigned int lastID;
/// \endcond
}
#ifdef OF_HAVE_PROPERTIES

View file

@ -30,7 +30,9 @@
*/
@interface XMPPException: OFException
{
/// \cond internal
XMPPConnection *connection;
/// \end
}
#ifdef OF_HAVE_PROPERTIES
@ -68,8 +70,10 @@
*/
@interface XMPPStreamErrorException: XMPPException
{
/// \cond internal
OFString *condition;
OFString *reason;
/// \endcond
}
#ifdef OF_HAVE_PROPERTIES
@ -117,8 +121,10 @@
*/
@interface XMPPStringPrepFailedException: XMPPException
{
/// \cond internal
OFString *profile;
OFString *string;
/// \endcond
}
#ifdef OF_HAVE_PROPERTIES
@ -165,8 +171,10 @@
*/
@interface XMPPIDNATranslationFailedException: XMPPException
{
/// \cond internal
OFString *operation;
OFString *string;
/// \endcond
}
#ifdef OF_HAVE_PROPERTIES
@ -213,7 +221,9 @@
*/
@interface XMPPAuthFailedException: XMPPException
{
/// \cond internal
OFString *reason;
/// \endcond
}
#ifdef OF_HAVE_PROPERTIES

View file

@ -28,9 +28,11 @@
*/
@interface XMPPJID: OFObject <OFCopying>
{
/// \cond internal
OFString *node;
OFString *domain;
OFString *resource;
/// \endcond
}
#ifdef OF_HAVE_PROPERTIES

View file

@ -29,7 +29,9 @@
*/
@interface XMPPMulticastDelegate: OFObject
{
/// \cond internal
OFDataArray *delegates;
/// \endcond
}
/**

View file

@ -67,9 +67,11 @@
<XMPPConnectionDelegate>
#endif
{
/// \cond internal
XMPPConnection *connection;
OFMutableDictionary *rosterItems;
XMPPMulticastDelegate *delegates;
/// \endcond
}
/**

View file

@ -24,12 +24,17 @@
@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

View file

@ -29,6 +29,7 @@
*/
@interface XMPPSCRAMAuth: XMPPAuthenticator
{
/// \cond internal
Class hashType;
OFString *cNonce;
OFString *GS2Header;
@ -37,6 +38,7 @@
XMPPConnection *connection;
BOOL plusAvailable;
BOOL authenticated;
/// \endcond
}
/**

View file

@ -30,10 +30,12 @@
*/
@interface XMPPStanza: OFXMLElement
{
/// \cond internal
XMPPJID *from;
XMPPJID *to;
OFString *type;
OFString *ID;
/// \endcond
}
#ifdef OF_HAVE_PROPERTIES