tags:

views:

36

answers:

3

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!

+2  A: 

I use http://www.grinninglizard.com/tinyxml/ for my XML work in C++. It is small, fast, and drops directly in to your project.

Moo-Juice
A: 

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.

Praetorian
A: 

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.

Cristian Adam