@@ -73,12 +73,26 @@ - setDelegate: (OFObject *)delegate; - parseBuffer: (const char*)buf withSize: (size_t)size; @end +/** + * The OFString (OFXMLUnescaping) category provides methods to unescape XML in + * strings. + */ @interface OFString (OFXMLUnescaping) +/** + * Unescapes XML in the string. + */ - stringByXMLUnescaping; + +/** + * Unescapes XML in the string and uses the specified handler for unknown + * entities. + * + * \param h An OFXMLUnescapingDelegate as a handler for unknown entities + */ - stringByXMLUnescapingWithHandler: (OFObject *)h; @end @interface OFObject (OFXMLParserDelegate) @end