changes from main repository

This commit is contained in:
Guenter Obiltschnig
2008-01-29 09:06:52 +00:00
parent ab8d8e38e3
commit b526dd81f2
47 changed files with 611 additions and 557 deletions

View File

@@ -1,7 +1,7 @@
//
// DOMSerializer.cpp
//
// $Id: //poco/svn/XML/src/DOMSerializer.cpp#2 $
// $Id: //poco/svn/XML/src/DOMSerializer.cpp#3 $
//
// Library: XML
// Package: DOM
@@ -199,6 +199,12 @@ void DOMSerializer::parse(const XMLString& systemId)
}
void DOMSerializer::parseMemoryNP(const char* xml, std::size_t size)
{
throw XMLException("The DOMSerializer cannot parse from memory");
}
void DOMSerializer::iterate(const Node* pNode) const
{
while (pNode)