32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
OFString *_name;
OFMutableArray *_lines;
}
/*!
* The name of the INI category
*/
@property (nonatomic, copy) OFString *name;
- init OF_UNAVAILABLE;
/*!
* @brief Returns the string value for the specified key, or `nil` if it does
* not exist.
*
|
|
|
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
OFString *_name;
OFMutableArray *_lines;
}
/*!
* The name of the INI category
*/
@property (copy, nonatomic) OFString *name;
- init OF_UNAVAILABLE;
/*!
* @brief Returns the string value for the specified key, or `nil` if it does
* not exist.
*
|