25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
@class XMPPJID;
/**
* \brief A class for representing an item in the roster.
*/
@interface XMPPRosterItem: OFObject
{
/// \cond internal
XMPPJID *_JID;
OFString *_name;
OFString *_subscription;
OFArray *_groups;
/// \endcond
}
#ifdef OF_HAVE_PROPERTIES
/// \brief The JID of the roster item
@property (copy) XMPPJID *JID;
/// \brief The name of the roster item to show to the user
@property (copy) OFString *name;
|
<
<
|
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
@class XMPPJID;
/**
* \brief A class for representing an item in the roster.
*/
@interface XMPPRosterItem: OFObject
{
XMPPJID *_JID;
OFString *_name;
OFString *_subscription;
OFArray *_groups;
}
#ifdef OF_HAVE_PROPERTIES
/// \brief The JID of the roster item
@property (copy) XMPPJID *JID;
/// \brief The name of the roster item to show to the user
@property (copy) OFString *name;
|