Overview
Comment: | gcc 4.6 does not seem to create implicit ivars. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
5a9500d05014b4c8504463425b406ebb |
User & Date: | js on 2011-03-28 13:56:57 |
Other Links: | manifest | tags |
Context
2011-03-28
| ||
15:30 | Move namespace definitions and add -[XMPPRoster addRosterItem:]. check-in: fe2b73b43b user: js tags: trunk | |
13:56 | gcc 4.6 does not seem to create implicit ivars. check-in: 5a9500d050 user: js tags: trunk | |
13:14 | Add XMPPRoster class. check-in: 010bd227d2 user: js tags: trunk | |
Changes
Modified src/XMPPRosterItem.h from [8f1d733b5b] to [710a1a3d37].
︙ | ︙ | |||
21 22 23 24 25 26 27 28 29 30 31 32 33 34 | */ #import <ObjFW/ObjFW.h> @class XMPPJID; @interface XMPPRosterItem: OFObject @property (copy) XMPPJID *JID; @property (copy) OFString *name; @property (copy) OFString *subscription; @property (copy) OFArray *groups; + rosterItem; @end | > > > > > > > | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | */ #import <ObjFW/ObjFW.h> @class XMPPJID; @interface XMPPRosterItem: OFObject { XMPPJID *JID; OFString *name; OFString *subscription; OFArray *groups; } @property (copy) XMPPJID *JID; @property (copy) OFString *name; @property (copy) OFString *subscription; @property (copy) OFArray *groups; + rosterItem; @end |