Differences From Artifact [56fd049fb8]:
- File
src/OFINIFile.h
— part of check-in
[0fead8a915]
at
2024-08-24 10:14:30
on branch trunk
— Rename OFINICategory to OFINISection
OFINICategory is provided as a deprecated subclass of OFINISection to
maintain API and ABI compatibility. (user: js, size: 4857) [annotate] [blame] [check-ins using]
To Artifact [e05af431e8]:
- File src/OFINIFile.h — part of check-in [dab4c26020] at 2024-08-24 10:25:56 on branch trunk — OFINISection: Allow values in global section (user: js, size: 4831) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
30 31 32 33 34 35 36 | * @class OFINIFile OFINIFile.h ObjFW/ObjFW.h * * @brief A class for reading, creating and modifying INI files. */ OF_SUBCLASSING_RESTRICTED @interface OFINIFile: OFObject { | < | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | * @class OFINIFile OFINIFile.h ObjFW/ObjFW.h * * @brief A class for reading, creating and modifying INI files. */ OF_SUBCLASSING_RESTRICTED @interface OFINIFile: OFObject { OFMutableArray OF_GENERIC(OFINISection *) *_sections; } /** * @brief All sections in the INI file. */ @property (readonly, nonatomic) OFArray OF_GENERIC(OFINISection *) *sections; |
︙ | ︙ |