@@ -26,14 +26,13 @@ /** * \brief A class describing a presence stanza. */ @interface XMPPPresence: XMPPStanza { - OFString *_status; - OFString *_show; - OFNumber *_priority; + OFString *_status, *_show, *_priority; } + #ifdef OF_HAVE_PROPERTIES @property (copy) OFString *status; @property (copy) OFString *show; @property (copy) OFNumber *priority; #endif @@ -133,11 +132,12 @@ * \param priority The numeric content of the priority element */ - (void)setPriority: (OFNumber*)priority; /** - * \brief Returns the numeric content of the priority element of the presence stanza. + * \brief Returns the numeric content of the priority element of the presence + * stanza. * * \return The numeric content of the priority element of the presence stanza. */ - (OFNumber*)priority; @end