Minimal XML library for C++?

后端 未结 5 1572
Happy的楠姐
Happy的楠姐 2021-02-09 05:27

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,

5条回答
  •  野的像风
    2021-02-09 05:31

    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.

提交回复
热议问题