@@ -30,10 +30,15 @@ @interface OFINIFile: OFObject { OFMutableArray OF_GENERIC(OFINICategory *) *_categories; } +/** + * @brief All categories in the INI file. + */ +@property (readonly, nonatomic) OFArray OF_GENERIC(OFINICategory *) *categories; + /** * @brief Creates a new OFINIFile with the contents of the specified file. * * @param path The path to the file whose contents the OFINIFile should contain *