What library to use to write XML file in a C++ program?
I’ve found two classes posted in CodeProject
- http://www.codeproject.com/KB/stl/simple_xmlwriter.aspx
- http://www.codeproject.com/KB/XML/XML_writer.aspx
but want to check if there is more standard option than these. I’m only concerned with writing, and not parsing XML.
I tried different libraries and finally decided for TinyXml. It’s compact, fast, free (zlib license) and very easy to use.