24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#import "XMPPStanza.h"
/**
* \brief A class describing a presence stanza.
*/
@interface XMPPPresence: XMPPStanza <OFComparing>
{
/// \cond internal
OFString *_status;
OFString *_show;
OFNumber *_priority;
/// \endcond
}
#ifdef OF_HAVE_PROPERTIES
@property (copy) OFString *status;
@property (copy) OFString *show;
@property (copy) OFNumber *priority;
#endif
|
<
<
|
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#import "XMPPStanza.h"
/**
* \brief A class describing a presence stanza.
*/
@interface XMPPPresence: XMPPStanza <OFComparing>
{
OFString *_status;
OFString *_show;
OFNumber *_priority;
}
#ifdef OF_HAVE_PROPERTIES
@property (copy) OFString *status;
@property (copy) OFString *show;
@property (copy) OFNumber *priority;
#endif
|