#include <DOMImplementationRegistry.hpp>
Static Public Member Functions | |
Functions introduced in DOM Level 3 | |
static DOMImplementation * | getDOMImplementation (const XMLCh *features) |
Return the first registered implementation that has the desired features, or null if none is found. | |
static void | addSource (DOMImplementationSource *source) |
Register an implementation. |
static DOMImplementation* xercesc::DOMImplementationRegistry::getDOMImplementation | ( | const XMLCh * | features | ) | [static] |
Return the first registered implementation that has the desired features, or null if none is found.
"Experimental - subject to change"
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. static void xercesc::DOMImplementationRegistry::addSource | ( | DOMImplementationSource * | source | ) | [static] |
Register an implementation.
"Experimental - subject to change"
source | A DOMImplementation Source object to be added to the registry. The registry does NOT adopt the source object. Users still own it. |