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

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