23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#import <ObjFW/ObjFW.h>
/**
* \brief A class describing a Service Discovery Identity
*/
@interface XMPPDiscoIdentity: OFObject <OFComparing>
{
OFString *_category;
OFString *_name;
OFString *_type;
}
#ifdef OF_HAVE_PROPERTIES
/// \brief The category of the identity
@property (readonly) OFString *category;
/// \brief The name of the identity, might be unset
@property (readonly) OFString *name;
/// \brief The type of the identity
|
|
<
<
|
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#import <ObjFW/ObjFW.h>
/**
* \brief A class describing a Service Discovery Identity
*/
@interface XMPPDiscoIdentity: OFObject <OFComparing>
{
OFString *_category, *_name, *_type;
}
#ifdef OF_HAVE_PROPERTIES
/// \brief The category of the identity
@property (readonly) OFString *category;
/// \brief The name of the identity, might be unset
@property (readonly) OFString *name;
/// \brief The type of the identity
|