Reputation: 11662
I was wondering what is the best XML Library in C++ (I'm using Visual Studio), considering fast set-up is critical. Basically, I want to create a file to save annotations on various .avi files.
Thank you in advance.
Upvotes: 4
Views: 1578
Reputation: 69672
TinyXML is simple enough for almost all your use (if you don't bother having the whole xml representation in memory) but other libraries offer better important features :
Upvotes: 2
Reputation: 16476
I've used XercesC++ in the past and it was relatively painless to get working and working with.
I'm currently using MSXML and it is painful.
Upvotes: 0
Reputation: 489998
You should be able to get TinyXML set up and working in a matter of minutes.
Upvotes: 5