22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
*/
#import "XMPPStanza.h"
/**
* \brief A class describing a presence stanza.
*/
@interface XMPPPresence: XMPPStanza
{
/// \cond internal
OFString *status;
OFString *show;
OFNumber *priority;
/// \endcond
}
|
|
|
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
*/
#import "XMPPStanza.h"
/**
* \brief A class describing a presence stanza.
*/
@interface XMPPPresence: XMPPStanza <OFComparing>
{
/// \cond internal
OFString *status;
OFString *show;
OFNumber *priority;
/// \endcond
}
|