2b41d64b31
- Add OPTIONS: XSLT - While I'm here, add WWW Changes: http://xmlwrapp.svn.sourceforge.net/viewvc/xmlwrapp/tags/release-0.6.2/NEWS PR: ports/158582 Submitted by: Niclas Zeising <niclas.zeising@gmail.com>
16 lines
736 B
Text
16 lines
736 B
Text
xmlwrapp is a modern style C++ library for working with XML data. It provides
|
|
a simple and easy to use interface for the very powerful libxml2 XML parser.
|
|
|
|
Features:
|
|
* Tree parsing. XML data is parsed and a tree of xml::node objects is
|
|
created. Similar to the DOM.
|
|
* Event parsing. XML data is parsed as protected member functions of an
|
|
event class are called. Similar to SAX.
|
|
* It is easy to construct an XML tree using xml::node objects. Any
|
|
xml::node may be inserted into an IOStream causing translation to XML
|
|
text data.
|
|
* Complete isolation from the backend parser due to the private
|
|
implementation (pimpl) idiom.
|
|
|
|
WWW: http://xmlwrapp.sourceforge.net/
|
|
https://github.com/vslavik/xmlwrapp
|