[Home] [By Thread] [By Date] [Recent Entries]
>>>>> James Clark <jjc@j...>:
> class Parser
> {
> public:
> virtual void setLocale (const char *) = 0;
> virtual void setEntityResolver (EntityResolver &resolver) = 0;
> virtual void setDTDHandler (DTDHandler &handler) = 0;
> virtual void setDocumentHandler (DocumentHandler &handler) = 0;
> virtual void setErrorHandler (ErrorHandler &handler) = 0;
> virtual void parse (SAXString systemId) = 0;
> virtual void parse (const InputSource &input) = 0;
> private:
> void operator delete (void *);
> };
I would like to add operations that can be used to "push" data to the
parser asynchronously:
class Parser
{
public:
virtual void setLocale (const char *) = 0;
virtual void setEntityResolver (EntityResolver &resolver) = 0;
virtual void setDTDHandler (DTDHandler &handler) = 0;
virtual void setDocumentHandler (DocumentHandler &handler) = 0;
virtual void setErrorHandler (ErrorHandler &handler) = 0;
virtual void parse (SAXString systemId) = 0;
virtual void parse (const InputSource &input) = 0;
virtual void asynchId(SAXString systemId) = 0; //for error reporting
virtual void asynchPutBlock(const char* buf, int len) = 0;
private:
void operator delete (void *);
};
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@i...
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1
To unsubscribe, mailto:majordomo@i... the following message;
unsubscribe xml-dev
To subscribe to the digests, mailto:majordomo@i... the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@i...)
|

Cart



