ObjFW  Check-in [630a522f46]

Overview
Comment:Small documentation fix.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 630a522f4697e80ffffc34688ad8ef6d611ad2f994c78a697d94a1d24806eccc
User & Date: js on 2009-04-19 18:38:42
Other Links: manifest | tags
Context
2009-04-19
20:19
Actually, it makes sense that - release returns self.
This way, you can check if the object has been free'd, for example
using if ((obj = [obj release]) == nil).
check-in: 348b389736 user: js tags: trunk
18:38
Small documentation fix. check-in: 630a522f46 user: js tags: trunk
18:13
Minor cleanups. check-in: 54850dda81 user: js tags: trunk
Changes

Modified src/OFPlugin.h from [3326b854c7] to [2b644c907d].

19
20
21
22
23
24
25
26
27
28
29
	void *handle;
}

/**
 * Loads an OFPlugin from a file.
 *
 * \param path Path to the OFPlugin file. The suffix is appended automatically.
 * \return A new autoreleased OFPlugin
 */
+ pluginFromFile: (const char*)path;
@end







|



19
20
21
22
23
24
25
26
27
28
29
	void *handle;
}

/**
 * Loads an OFPlugin from a file.
 *
 * \param path Path to the OFPlugin file. The suffix is appended automatically.
 * \return The loaded OFPlugin
 */
+ pluginFromFile: (const char*)path;
@end