Differences From Artifact [8f1d733b5b]:
- File src/XMPPRosterItem.h — part of check-in [010bd227d2] at 2011-03-28 13:14:27 on branch trunk — Add XMPPRoster class. (user: js, size: 1359) [annotate] [blame] [check-ins using]
To Artifact [710a1a3d37]:
- File src/XMPPRosterItem.h — part of check-in [5a9500d050] at 2011-03-28 13:56:57 on branch trunk — gcc 4.6 does not seem to create implicit ivars. (user: js, size: 1439) [annotate] [blame] [check-ins using]
︙ | |||
21 22 23 24 25 26 27 28 29 30 31 32 33 34 | 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 |