Anteru
Anteru

Reputation: 19374

Minimal XML library for C++?

What XML libraries are out there, which are minimal, easy to use, come with little dependencies (ideally none), can be linked statically and come with a liberal license? So far, I've been a pretty happy user of TinyXML, but I'm curious what alternatives I have missed so far.

Upvotes: 7

Views: 2289

Answers (5)

Jeff M
Jeff M

Reputation: 710

I recommend rapidxml. It's an order of magnitude smaller than tinyxml, and doesn't choke on doctypes like tinyxml does.

If you need entity support or anything advanced, forget about static linking and use expat or libxml2.

Upvotes: 4

MattyT
MattyT

Reputation: 6651

In "what’s the easiest way to generate xml in c++?" I wrote a comment that lists a few C++ XML libraries

TinyXML++ (ticpp) was, IMHO, the most appropriate for a small, easy to use XML library in C++.

Upvotes: 0

Rob
Rob

Reputation: 78598

FWIW there is also a version of TinyXML with a more C++-like interface, called ticpp.

Upvotes: 3

ChrisW
ChrisW

Reputation: 56083

There's one called libxml2.

There's also a Windows-only solution, a COM library that's part of the O/S, called msxml.

Upvotes: 0

igowen
igowen

Reputation: 651

expat is a very fast C XML parser (although a C++ wrapper exists) that's widely used in many open-source projects. If I remember correctly, it has very few dependencies, and it's licensed under the very liberal MIT License.

Upvotes: 8

Related Questions