Hi,
I am working on parsing a xml file with C++ in Eclipse running under Linux Ubuntu.
Is there any free library for this?
Or any resource that I could start with?
Thanks in advance!
Hi,
I am working on parsing a xml file with C++ in Eclipse running under Linux Ubuntu.
Is there any free library for this?
Or any resource that I could start with?
Thanks in advance!
I use http://www.grinninglizard.com/tinyxml/ for my XML work in C++. It is small, fast, and drops directly in to your project.
Apache Xerces is an open source full featured validating XML parser. It has APIs for both DOM and SAX2 parsers. It's also got bindings for other languages.
I use pugixml for my XML work in C++. It is small, extremely fast, drops directly to you project, and for topping it has XPath support.