|
Unicorn XML Toolkit Version 1.00.00 |
|||||||||
� PREV CLASS �� NEXT CLASS | FRAMES��NO FRAMES | |||||||||
SUMMARY: � CONSTR �|� FUNCTION �|�DATA | DETAIL: � CONSTR �|� FUNCTION �|�DATA |
class CFunctionLibrary: public CInterface { public: CFunctionLibrary(); virtual ~CFunctionLibrary(); public: virtual bool IsFunctionAvailable( const CString &strNamespaceUri, const CString &strLocalName) = 0; virtual XFunction FindFunction( const CString &strNamespaceUri, const CString &strLocalName) = 0; };
The abstract interface to XPath function libraries.
CFunction
Constructor/Destructor Summary | |
CFunctionLibrary
();
����������Constructs the function library. |
|
~CFunctionLibrary
();
����������Destroys the function library. |
Function Summary | |
bool
|
IsFunctionAvailable
(const CString &strNamespaceUri, const CString &strLocalName);
����������Tests whether a function with the given namespace URI and local name is available in this function library. |
XFunction
|
FindFunction
(const CString &strNamespaceUri, const CString &strLocalName);
����������Looks up a function with the given namespace URI and local name in this function library. |
Constructor/Destructor Detail |
CFunctionLibrary();
Constructs the function library.
virtual ~CFunctionLibrary();
Destroys the function library.
Function Detail |
virtual bool IsFunctionAvailable( const CString &strNamespaceUri, const CString &strLocalName) = 0;
Tests whether a function with the given namespace URI and local name is available in this function library.
strNamespaceUri
- the namespace URI of a functionstrLocalName
- the local name of a functiontrue
if the function with the
given namespace URI and local name is available in
this function library;
false
otherwisevirtual XFunction FindFunction( const CString &strNamespaceUri, const CString &strLocalName) = 0;
Looks up a function with the given namespace URI and local name in this function library.
strNamespaceUri
- the namespace URI of a function to look upstrLocalName
- the local name of a function to look upNULL
if none was found
|
Unicorn XML Toolkit Version 1.00.00 |
|||||||||
� PREV CLASS �� NEXT CLASS | FRAMES��NO FRAMES | |||||||||
SUMMARY: � CONSTR �|� FUNCTION �|�DATA | DETAIL: � CONSTR �|� FUNCTION �|�DATA |