24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#import <ObjFW/ObjFW.h>
/**
* \brief A class for easy handling of JIDs.
*/
@interface XMPPJID: OFObject <OFCopying>
{
OFString *node;
OFString *domain;
OFString *resource;
}
#ifdef OF_HAVE_PROPERTIES
/// The JID's localpart
@property (copy) OFString *node;
/// The JID's domainpart
@property (copy) OFString *domain;
|
>
>
|
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#import <ObjFW/ObjFW.h>
/**
* \brief A class for easy handling of JIDs.
*/
@interface XMPPJID: OFObject <OFCopying>
{
/// \cond internal
OFString *node;
OFString *domain;
OFString *resource;
/// \endcond
}
#ifdef OF_HAVE_PROPERTIES
/// The JID's localpart
@property (copy) OFString *node;
/// The JID's domainpart
@property (copy) OFString *domain;
|