0

Possible Duplicate:
What XML parser should I use in C++?

It is generally required to parse application settings from local XML file under Linux platform and nothing more.

Requirements: 1. Can be used for commercial product 2. Free of charge 3. Easy to install (1 header file will be great) 4. Easy to use 5. Very stable 6. Unicode support

Community
  • 1
  • 1
ohavryl
  • 397
  • 1
  • 5
  • 17
  • 5
    Perhaps helpful: http://stackoverflow.com/questions/9387610/what-xml-parser-should-i-use-in-c – jogojapan Nov 30 '12 at 10:08
  • I _think_ TinyXML is what you want, not sure if it meets the commerical requirement. –  Dec 02 '12 at 17:15

3 Answers3

0

I think expat does everything you want.

Russ Freeman
  • 1,480
  • 1
  • 8
  • 6
0

I use Apache's xerces-c. It never gave me problems and you can find some useful info on Google, like: Tuto1. Also, it is free of charge and you can use it commercial products.

Adri C.S.
  • 2,909
  • 5
  • 36
  • 63
0

have a look at boost::property_tree http://www.boost.org/doc/libs/1_52_0/doc/html/property_tree.html

stefan
  • 3,681
  • 15
  • 25