hi,
in my tinyxml test parser i load the xml file directly from the parser:
TiXMLDocument doc("test.xml") doc.LoadFile();
Now I aks myself if it is possible to load the xml from a String like:
TiXMLDocument doc(anyString);
fact is, that i get my xml data from a database und do not want create temporary files. does anybody has an idea how to solve my question?
phil
might be better to read the manual rather than ask yourself ;)
doc.Parse( "<message>Class docs are at http://www.grinninglizard.com/tinyxmldocs/classTiXmlDocument.html</message>" )
Log in to post a comment.
hi,
in my tinyxml test parser i load the xml file directly from the parser:
TiXMLDocument doc("test.xml")
doc.LoadFile();
Now I aks myself if it is possible to load the xml from a String like:
TiXMLDocument doc(anyString);
fact is, that i get my xml data from a database und do not want create temporary files. does anybody has an idea how to solve my question?
phil
might be better to read the manual rather than ask yourself ;)
doc.Parse( "<message>Class docs are at http://www.grinninglizard.com/tinyxmldocs/classTiXmlDocument.html</message>" )