This is an interface to James
Clark's expat library for parsing XML documents.
Module Processor.ozf exports a class that implements a
SAX-like processor which can be used e.g. as shown below.
SAX events are invoked as methods. Each application should specialize
these methods to do something useful.
functor
import Processor at 'x-ozlib://duchier/xml/expat/Processor.ozf'
define
...
class MyProcessor from Processor.'class'
...
meth startElement(Tag Attribs) ... end
...
end
...
end