Hide instance variables from the documentation.
This commit is contained in:
parent
2efeee1a0d
commit
643552d5d9
10 changed files with 30 additions and 0 deletions
1
Doxyfile
1
Doxyfile
|
@ -6,3 +6,4 @@ HTML_OUTPUT = .
|
|||
GENERATE_LATEX = NO
|
||||
HIDE_UNDOC_CLASSES = YES
|
||||
PREDEFINED = OF_HAVE_PROPERTIES
|
||||
IGNORE_PREFIX = XMPP
|
||||
|
|
|
@ -27,9 +27,11 @@
|
|||
*/
|
||||
@interface XMPPAuthenticator: OFObject
|
||||
{
|
||||
/// \cond internal
|
||||
OFString *authzid;
|
||||
OFString *authcid;
|
||||
OFString *password;
|
||||
/// \endcond
|
||||
}
|
||||
|
||||
#ifdef OF_HAVE_PROPERTIES
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -28,9 +28,11 @@
|
|||
*/
|
||||
@interface XMPPJID: OFObject <OFCopying>
|
||||
{
|
||||
/// \cond internal
|
||||
OFString *node;
|
||||
OFString *domain;
|
||||
OFString *resource;
|
||||
/// \endcond
|
||||
}
|
||||
|
||||
#ifdef OF_HAVE_PROPERTIES
|
||||
|
|
|
@ -29,7 +29,9 @@
|
|||
*/
|
||||
@interface XMPPMulticastDelegate: OFObject
|
||||
{
|
||||
/// \cond internal
|
||||
OFDataArray *delegates;
|
||||
/// \endcond
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -67,9 +67,11 @@
|
|||
<XMPPConnectionDelegate>
|
||||
#endif
|
||||
{
|
||||
/// \cond internal
|
||||
XMPPConnection *connection;
|
||||
OFMutableDictionary *rosterItems;
|
||||
XMPPMulticastDelegate *delegates;
|
||||
/// \endcond
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -30,10 +30,12 @@
|
|||
*/
|
||||
@interface XMPPStanza: OFXMLElement
|
||||
{
|
||||
/// \cond internal
|
||||
XMPPJID *from;
|
||||
XMPPJID *to;
|
||||
OFString *type;
|
||||
OFString *ID;
|
||||
/// \endcond
|
||||
}
|
||||
|
||||
#ifdef OF_HAVE_PROPERTIES
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue