diff options
author | ijliao <ijliao@FreeBSD.org> | 2003-01-14 01:51:15 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2003-01-14 01:51:15 +0800 |
commit | c7c1022a2fa0cb0d10e65ea5ff398b2bd44c58ff (patch) | |
tree | d080f56d5cecc969db221d911ce7f27b67b309db /textproc/xmlwrapp/pkg-descr | |
parent | 564e1572a03615f1e935a5d445e03dba38f343cf (diff) | |
download | freebsd-ports-gnome-c7c1022a2fa0cb0d10e65ea5ff398b2bd44c58ff.tar.gz freebsd-ports-gnome-c7c1022a2fa0cb0d10e65ea5ff398b2bd44c58ff.tar.zst freebsd-ports-gnome-c7c1022a2fa0cb0d10e65ea5ff398b2bd44c58ff.zip |
add xmlwrapp 0.3.0
A modern style C++ library for working with XML data
Diffstat (limited to 'textproc/xmlwrapp/pkg-descr')
-rw-r--r-- | textproc/xmlwrapp/pkg-descr | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/textproc/xmlwrapp/pkg-descr b/textproc/xmlwrapp/pkg-descr new file mode 100644 index 000000000000..9d21dc13abdc --- /dev/null +++ b/textproc/xmlwrapp/pkg-descr @@ -0,0 +1,15 @@ +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/pjones/software/xmlwrapp/ |