I am asking this question to see whether TinyXML supports parsing a string of XML data which is NULL terminated as well as files? The only reason I ask is I attempted the following:
`const string xmlData = "..............";`
`TiXmlDocument xmlStream;`
`const char * pReturn = xmlStream.Parse(xmlData.c_str());`
`if(pReturn != NULL)`
`{`
` TiXmlNode * pNode =...
2009-10-19 21:38:59 UTC in TinyXml