changes for 1.3.2

This commit is contained in:
Guenter Obiltschnig
2008-01-28 17:54:26 +00:00
parent 4f5b88bc3d
commit 112149e736
131 changed files with 2477 additions and 1087 deletions

View File

@@ -1,7 +1,7 @@
//
// XMLFilterImpl.cpp
//
// $Id: //poco/1.3/XML/src/XMLFilterImpl.cpp#1 $
// $Id: //poco/1.3/XML/src/XMLFilterImpl.cpp#2 $
//
// Library: XML
// Package: SAX
@@ -186,6 +186,13 @@ void XMLFilterImpl::parse(const XMLString& systemId)
}
void XMLFilterImpl::parseMemoryNP(const char* xml, std::size_t size)
{
setupParse();
_pParent->parseMemoryNP(xml, size);
}
InputSource* XMLFilterImpl::resolveEntity(const XMLString* publicId, const XMLString& systemId)
{
if (_pEntityResolver)