mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-14 23:07:56 +02:00
add optional name pool size argument to DOMParser constructor
This commit is contained in:
@@ -40,9 +40,12 @@ class XML_API DOMParser
|
||||
/// support of a WhitespaceFilter.
|
||||
{
|
||||
public:
|
||||
DOMParser(NamePool* pNamePool = 0);
|
||||
explicit DOMParser(NamePool* pNamePool = 0);
|
||||
/// Creates a new DOMParser.
|
||||
/// If a NamePool is given, it becomes the Document's NamePool.
|
||||
|
||||
explicit DOMParser(unsigned long namePoolSize);
|
||||
/// Creates a new DOMParser, using the given name pool size.
|
||||
|
||||
~DOMParser();
|
||||
/// Destroys the DOMParser.
|
||||
|
Reference in New Issue
Block a user