ObjFW  Check-in [e6ff688bf4]

Overview
Comment:OFINICategory: Add missing -[setName:] and -[name]
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: e6ff688bf4d2c466a261f58b20d172d96d10696524f51bd417f1a711f659b98f
User & Date: js on 2014-02-19 11:17:09
Other Links: manifest | tags
Context
2014-02-19
11:18
Fix compilation on NetBSD check-in: a3a157e52d user: js tags: trunk
11:17
OFINICategory: Add missing -[setName:] and -[name] check-in: e6ff688bf4 user: js tags: trunk
2014-02-18
23:02
OFINIFileTests: Fix a warning when using Apple GCC check-in: 67225c4644 user: js tags: trunk
Changes

Modified src/OFINICategory.h from [453e9e177f] to [c458e5b7fa].

30
31
32
33
34
35
36














37
38
39
40
41
42
43
	OFMutableArray *_lines;
}

#ifdef OF_HAVE_PROPERTIES
@property (copy) OFString *name;
#endif















/*!
 * @brief Returns the string value for the specified key, or nil if it does not
 *	  exist.
 *
 * @param key The key for which the string value should be returned
 * @return The string value for the specified key, or nil if it does not exist
 */







>
>
>
>
>
>
>
>
>
>
>
>
>
>







30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
	OFMutableArray *_lines;
}

#ifdef OF_HAVE_PROPERTIES
@property (copy) OFString *name;
#endif

/*!
 * @brief Sets the name of the INI category.
 *
 * @param name The name to set
 */
- (void)setName: (OFString*)name;

/*!
 * @brief Returns the name of the INI category.
 *
 * @return The name of the INI category
 */
- (OFString*)name;

/*!
 * @brief Returns the string value for the specified key, or nil if it does not
 *	  exist.
 *
 * @param key The key for which the string value should be returned
 * @return The string value for the specified key, or nil if it does not exist
 */