Skip to content
Christian edited this page Mar 14, 2015 · 5 revisions

XMLCC

A C++ XML library for simple SAX & DOM

XMLCC is a C++ library for the extensible markup language (XML). It is strongly object-oriented and based on software design patterns for generating, searching, and parsing even malformed XML files.

Two parsers are available: a simple API for XML (SAX) parser for an event based parsing and a document object model (DOM) parser generating an object model tree.

This library is - yet - a non validating, not speed optimized, and explicit not dealing with file encodings; those are overcome by C++'s local standard template libraries (STL). It just provides an easy access to XML files.

Eamples

Have a look at the News and at main.cpp for examples of XML generation and parsing.

Clone this wiki locally