	          XIP - XML Iterative Parsing

Some people dislike XML in and of itself.  I think it's ok, but as
a programmer I think the two predominant styles of parser both suck.
SAX is pretty simple and lightweight, but doesn't actually do very
much - all your apps end up having to do their own bookkeeping.
DOM on the other hand reads the entire document into memory, which
is a bad idea when you're dealing with large files.

So I wrote my own.  See the header file for more details.

Files in this distribution:

    README		this
    Makefile		guess
    XIP.h		header file defining the parser interface
    XmlParser.h		header file for this particular implementation
    XmlParser.cpp	sample implementation of a XIP parser
    xmltest.cpp		sample driver program that calls XmlParser
    test.xml		a test XML file

To build: just do a make.

Feedback is welcome - send bug reports, enhancements, checks, money
orders, etc. to the addresses below.

    Jef Poskanzer  jef@mail.acme.com  http://www.acme.com/jef/
