-
Notifications
You must be signed in to change notification settings - Fork 2
Home
Christian edited this page Mar 14, 2015
·
5 revisions
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.
Have a look at the News and at main.cpp for examples of XML generation and parsing.