freebsd-ports/textproc/xmlwrapp/pkg-descr
Kirill Ponomarev 580c90d07e - Update to version 0.5.0
PR:		ports/64508
Submitted by:	Ports Fury
2004-03-20 17:25:38 +00:00

15 lines
698 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://pmade.org/software/xmlwrapp/