Top "Tinyxml" questions

TinyXML is a simple, small C++ XML parser and generator library.

Parsing XML Elements using TinyXML

UPDATE: Still not working :( I have updated the code portion to reflect what I currently have. This should be a …

c++ xml xml-parsing tinyxml
XML Serialization/Deserialization in C++

I am using C++ from Mingw, which is the windows version of GNC C++. What I want to do is: …

c++ xml-serialization serialization tinyxml
Comparing to a hardcoded string with quotes in C++

I'm writing a c++ function to generate XML using TinyXML. I'd like to verify that a (relatively small) tree produced …

c++ googletest tinyxml
Using TinyXML ( linking libraries ? in c++ )

+Hi... i am a newbie ... and i don't know how to include external libraries in c++. This is sooo hard. …

c++ tinyxml
How to use TinyXml to parse for a specific element

I would like to parse a group of elements out of a TinyXml output. Essentially, I need to pick out …

c++ xml tinyxml
Can TinyXml load Xml from string instead of file?

I'm using TinyXml library for my application but TiXmlDocument object just only can load Xml file. How can it load …

tinyxml tinyxml++
TinyXML Debian Installation

Can someone give me some instructions on how to install TinyXML (or TinyXML++) to debian so I can use it …

c++ tinyxml
How to create separate library for include in C++/Eclipse

I've gotten some C++ code to work with the TinyXML parser. However, to do this I had to include the …

c++ eclipse tinyxml
Find a specific node in a XML document with TinyXML

I want to parse some data from an xml file with TinyXML. Here's my text.xml file content: <?xml …

c++ xml parsing tinyxml
Should I use XPath or just DOM?

I have a bunch of hierarchical data stored in an XML file. I am wrapping that up behind hand-crafted classes …

c++ xml xpath tinyxml