| How to generate XML files from C++/VC++ Is there any library available or we have to write each element ourselves |
|
There's an XML library in the .NET framework. If you're going to use .NET to write your XML, make sure you read up on DataSets and DataTables.
Otherwise, you can make use of MSXML. However, I've found the native XML libraries (xerces, tinyxml, expat and msxml) to be overcomplicated for writing out XML data. It's far easier to just write the elements yourself.
|