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 @@
//
// DOMParser.h
//
// $Id: //poco/1.3/XML/include/Poco/DOM/DOMParser.h#1 $
// $Id: //poco/1.3/XML/include/Poco/DOM/DOMParser.h#2 $
//
// Library: XML
// Package: DOM
@@ -105,6 +105,9 @@ public:
Document* parseString(const std::string& xml);
/// Parse an XML document from a string.
Document* parseMemory(const char* xml, std::size_t size);
/// Parse an XML document from memory.
EntityResolver* getEntityResolver() const;
/// Returns the entity resolver used by the underlying SAXParser.