25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
OF_ASSUME_NONNULL_BEGIN
/*!
* @brief A class describing a message stanza.
*/
@interface XMPPMessage: XMPPStanza
/*! The text content of the body of the message. */
@property (copy) OFString *body;
/*!
* @brief Creates a new autoreleased XMPPMessage.
*
* @return A new autoreleased XMPPMessage
*/
+ (instancetype)message;
|
>
|
>
|
|
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
OF_ASSUME_NONNULL_BEGIN
/*!
* @brief A class describing a message stanza.
*/
@interface XMPPMessage: XMPPStanza
/*!
* The text content of the body of the message.
*/
@property (nonatomic, copy) OFString *body;
/*!
* @brief Creates a new autoreleased XMPPMessage.
*
* @return A new autoreleased XMPPMessage
*/
+ (instancetype)message;
|