ObjFW  Check-in [a1bfe7c4b7]

Overview
Comment:Small documentation fix.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: a1bfe7c4b7ffa53fe70a02f8db63071b857c4c161c4b610b1dcd58001368076d
User & Date: js on 2011-10-19 15:00:32
Other Links: manifest | tags
Context
2011-10-22
16:14
Define of_thread_current without the ().
This way, it's possible to get a pointer to the actual function.
check-in: 376cff4c0b user: js tags: trunk
2011-10-19
15:00
Small documentation fix. check-in: a1bfe7c4b7 user: js tags: trunk
2011-10-16
21:30
Add introspection for properties. check-in: cea0c66392 user: js tags: trunk
Changes

Modified src/OFXMLElement.h from [a24e46c616] to [06448a5e0a].

227
228
229
230
231
232
233
234

235
236

237
238
239
240
241
242
243
227
228
229
230
231
232
233

234
235

236
237
238
239
240
241
242
243







-
+

-
+







 * \brief Removes all children and adds the children from the specified array.
 *
 * \param children The new children to add
 */
- (void)setChildren: (OFArray*)children;

/**
 * \brief Returns an array with all children of the element.
 * \brief Returns an array of OFXMLNodes with all children of the element.
 *
 * \return An array with all children of the element
 * \return An array of OFXMLNodes with all children of the element
 */
- (OFArray*)children;

/**
 * \brief Removes all children and sets the string value to the specified
 *	  string.
 *