I need to do some XML-related job (parsing, comparison etc). Is there any C++ library for this that you know works good ? Preferrably for Win XP. Thanks.
+1
A:
I used wxWidgets which has wxXmlDocument class that does a lot of hard work for you. It uses Expat internally, but handles all the charset conversions on its own. This is if you want a DOM based parser.
http://docs.wxwidgets.org/stable/wx_wxxmldocument.html
You might also want to look at Xerces, esp. if you want a SAX parser:
Milan Babuškov
2009-12-15 01:12:44
+5
A:
Tiny XML! Good library, ugly homepage: http://www.grinninglizard.com/tinyxml/
Laserallan
2009-12-15 01:30:29