What Xml engine (parser) advise? The engine must be written in C or C ++. Basic options:
- Simple answer parsing algorithm.
- Simple query creation algorithm.
- Free.
- Open source code.
- GPL license.
- A set of examples of using (samples) included.
What Xml engine (parser) advise? The engine must be written in C or C ++. Basic options:
The most stable library contains a large number of protocols - LibXml2 . This library is written in C, the footprint is cross-platform. Goes in open source. A large number of compilation options, which, when not needed, makes it possible to abandon third-party dependencies.
In my opinion, Tiny XML might work.
This is a lightweight library with only basic xml functionality. It is well suited for building simple xml expressions.
Try Xerces XML Parser , your requirements are met, only the license is the Apache Software License, Version 2.0, and not the GPL.
pugixml is a lightweight, simple and fast XML parser for C ++ with XPath support. True, there is a MIT license.
Source: https://ru.stackoverflow.com/questions/1782/
All Articles