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
/// \brief The JID's localpart
@property (copy) OFString *node;
/// \brief 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
|
#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
/// \brief The JID's localpart
@property (copy) OFString *node;
/// \brief The JID's domainpart
@property (copy) OFString *domain;
|