Differences From Artifact [0a05a907db]:
- File src/XMPPJID.h — part of check-in [2f8a95152e] at 2011-03-29 01:46:20 on branch trunk — Port to ObjC 1. (user: js, size: 2392) [annotate] [blame] [check-ins using]
To Artifact [9a904b032f]:
- File src/XMPPJID.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: 2424) [annotate] [blame] [check-ins using]
︙ | |||
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | + + | #import <ObjFW/ObjFW.h> /** * \brief A class for easy handling of JIDs. */ @interface XMPPJID: OFObject <OFCopying> { /// \cond internal OFString *node; OFString *domain; OFString *resource; /// \endcond } #ifdef OF_HAVE_PROPERTIES /// The JID's localpart @property (copy) OFString *node; /// The JID's domainpart @property (copy) OFString *domain; |
︙ |