Differences From Artifact [eb4f4f5610]:
- File src/XMPPStanza.h — part of check-in [29d84637d6] at 2011-04-25 23:04:34 on branch trunk — Improve +[XMPPStanza stanzaWithElement:]. (user: js, size: 4811) [annotate] [blame] [check-ins using]
To Artifact [ecb78e970b]:
- File src/XMPPStanza.h — part of check-in [f5739f6ee6] at 2012-02-03 10:43:44 on branch trunk — Hide instance variables from the documentation. (user: js, size: 4843) [annotate] [blame] [check-ins using]
︙ | |||
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | + + | @class XMPPJID; /** * \brief A class describing an XMPP Stanza. */ @interface XMPPStanza: OFXMLElement { /// \cond internal XMPPJID *from; XMPPJID *to; OFString *type; OFString *ID; /// \endcond } #ifdef OF_HAVE_PROPERTIES /// The value of the stanza's from attribute @property (copy) XMPPJID *from; /// The value of the stanza's to attribute @property (copy) XMPPJID *to; |
︙ |