Differences From Artifact [a52c1059f2]:
- File src/OFINICategory.h — part of check-in [0509d7a844] at 2019-01-03 19:13:03 on branch trunk — Update copyright (user: js, size: 7882) [annotate] [blame] [check-ins using]
To Artifact [cfca4456a9]:
- File
src/OFINICategory.h
— part of check-in
[496695d778]
at
2019-09-29 19:35:38
on branch trunk
— Either restrict subclassing or reserve ivar space
This allows ABI stability with the fragile ABI. (user: js, size: 7908) [annotate] [blame] [check-ins using] [more...]
︙ | ︙ | |||
24 25 26 27 28 29 30 31 32 33 34 35 36 37 | @class OFString; /*! * @class OFINICategory OFINICategory.h ObjFW/OFINICategory.h * * @brief A class for representing a category of an INI file. */ @interface OFINICategory: OFObject { OFString *_name; OFMutableArray *_lines; } /*! | > | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | @class OFString; /*! * @class OFINICategory OFINICategory.h ObjFW/OFINICategory.h * * @brief A class for representing a category of an INI file. */ OF_SUBCLASSING_RESTRICTED @interface OFINICategory: OFObject { OFString *_name; OFMutableArray *_lines; } /*! |
︙ | ︙ |