#include <DOMImplementationSource.hpp>
Public Member Functions | |
Destructor | |
virtual | ~DOMImplementationSource () |
Destructor. | |
Functions introduced in DOM Level 3 | |
virtual DOMImplementation * | getDOMImplementation (const XMLCh *features) const =0 |
A method to request the first DOM implementation that supports the specified features. | |
virtual DOMImplementationList * | getDOMImplementationList (const XMLCh *features) const =0 |
A method to request a list of DOM implementations that support the specified features and versions,. | |
Protected Member Functions | |
Hidden constructors | |
DOMImplementationSource () |
xercesc::DOMImplementationSource::DOMImplementationSource | ( | ) | [inline, protected] |
virtual xercesc::DOMImplementationSource::~DOMImplementationSource | ( | ) | [inline, virtual] |
Destructor.
virtual DOMImplementation* xercesc::DOMImplementationSource::getDOMImplementation | ( | const XMLCh * | features | ) | const [pure virtual] |
A method to request the first DOM implementation that supports the specified features.
features | A string that specifies which features are required. This is a space separated list in which each feature is specified by its name optionally followed by a space and a version number. This is something like: "XML 1.0 Traversal 2.0" |
null
if this source has none. virtual DOMImplementationList* xercesc::DOMImplementationSource::getDOMImplementationList | ( | const XMLCh * | features | ) | const [pure virtual] |
A method to request a list of DOM implementations that support the specified features and versions,.
features | A string that specifies which features are required. This is a space separated list in which each feature is specified by its name optionally followed by a space and a version number. This is something like: "XML 1.0 Traversal 2.0" |