|
Unicorn XML Toolkit Version 1.00.00 |
|||||||||
� PREV CLASS �� NEXT CLASS | FRAMES��NO FRAMES | |||||||||
SUMMARY: � CONSTR �|� FUNCTION �|�DATA | DETAIL: � CONSTR �|� FUNCTION �|�DATA |
class IDomImplementation: virtual public CInterface { public: IDomImplementation(); virtual ~IDomImplementation(); public: virtual bool HasFeature( const CString &strFeature, const CString &strVersion) = 0; };
The container for features related to implementation of the document model.
This class implements
the C++ binding for the
DOMImplementation
interface
specified by DOM.
Constructor/Destructor Summary | |
IDomImplementation
();
����������Constructs the DOM implementation. |
|
~IDomImplementation
();
����������Destroys the DOM implementation. |
Function Summary | |
bool
|
HasFeature
(const CString &strFeature, const CString &strVersion);
����������Tests whether the document model implements the version specified by strVersion
of the feature specified
by
strFeature
. |
Constructor/Destructor Detail |
IDomImplementation();
Constructs the DOM implementation.
virtual ~IDomImplementation();
Destroys the DOM implementation.
Function Detail |
virtual bool HasFeature( const CString &strFeature, const CString &strVersion) = 0;
Tests whether the document model implements the version
specified by
strVersion
of the feature specified
by
strFeature
.
This method implements the C++ binding
for the
hasFeature
operation specified by
DOM.
strFeature
- the name of the featurestrVersion
- the version of the featuretrue
if the specified version of
the specified feature is implemented;
false
otherwise
|
Unicorn XML Toolkit Version 1.00.00 |
|||||||||
� PREV CLASS �� NEXT CLASS | FRAMES��NO FRAMES | |||||||||
SUMMARY: � CONSTR �|� FUNCTION �|�DATA | DETAIL: � CONSTR �|� FUNCTION �|�DATA |