Reputation: 1896
I have requirement where we have to read a small XML file on Linux. Our application is in C++ and I like to use any light weight XML library. Please suggest me the library. Thanks
Upvotes: 6
Views: 6635
Reputation: 43024
There is xerces-c for that. It's complete, but I don't know if you will find it small enough. Your question is relative to what?
Upvotes: 0
Reputation: 409
Have a look also at TinyXml (http://sourceforge.net/projects/tinyxml). It is extremely lightweight and for this reason it is used also in mobile and game programming. The API is minimal though so you have to evaluate if it fully satisfy your needs.
Upvotes: 1