@@ -264,9 +264,23 @@ * \param buf The buffer to parse * \param size The size of the buffer */ - (void)parseBuffer: (const char*)buf withSize: (size_t)size; + +/** + * Parses the specified string. + * + * \param str The string to parse + */ +- (void)parseString: (OFString*)str; + +/** + * Parses the specified file. + * + * \param path The path to the file to parse +*/ +- (void)parseFile: (OFString*)path; @end @interface OFObject (OFXMLParserDelegate) @end