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

@ -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