mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-02 09:49:48 +02:00
doc clarifications
This commit is contained in:
parent
80f95d7c16
commit
6b47a37fdf
@ -45,7 +45,11 @@ public:
|
|||||||
/// If a NamePool is given, it becomes the Document's NamePool.
|
/// If a NamePool is given, it becomes the Document's NamePool.
|
||||||
|
|
||||||
explicit DOMParser(unsigned long namePoolSize);
|
explicit DOMParser(unsigned long namePoolSize);
|
||||||
/// Creates a new DOMParser, using the given name pool size.
|
/// Creates a new DOMParser, using the given NamePool size.
|
||||||
|
///
|
||||||
|
/// The given namePoolSize should be a suitable prime number,
|
||||||
|
/// e.g. 251, 509, 1021 or 4093, depending on the expected
|
||||||
|
/// size of the document.
|
||||||
|
|
||||||
~DOMParser();
|
~DOMParser();
|
||||||
/// Destroys the DOMParser.
|
/// Destroys the DOMParser.
|
||||||
|
@ -44,6 +44,9 @@ class XML_API NamePool
|
|||||||
public:
|
public:
|
||||||
NamePool(unsigned long size = POCO_XML_NAMEPOOL_DEFAULT_SIZE);
|
NamePool(unsigned long size = POCO_XML_NAMEPOOL_DEFAULT_SIZE);
|
||||||
/// Creates a name pool with room for up to size strings.
|
/// Creates a name pool with room for up to size strings.
|
||||||
|
///
|
||||||
|
/// The given size should be a suitable prime number,
|
||||||
|
/// e.g. 251, 509, 1021 or 4093.
|
||||||
|
|
||||||
const Name& insert(const XMLString& qname, const XMLString& namespaceURI, const XMLString& localName);
|
const Name& insert(const XMLString& qname, const XMLString& namespaceURI, const XMLString& localName);
|
||||||
/// Returns a const reference to an Name for the given names.
|
/// Returns a const reference to an Name for the given names.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user