Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef __XQILLANSRESOLVER_HPP
00023 #define __XQILLANSRESOLVER_HPP
00024
00025 #include <xqilla/framework/XQillaExport.hpp>
00026 #include <xercesc/dom/DOMXPathNSResolver.hpp>
00027
00028 XERCES_CPP_NAMESPACE_BEGIN
00029 class XercesDefs;
00030 class DOMNode;
00031 XERCES_CPP_NAMESPACE_END
00032
00033 class XPath2MemoryManager;
00034
00040 class XQILLA_API XQillaNSResolver : public XERCES_CPP_NAMESPACE_QUALIFIER DOMXPathNSResolver
00041 {
00042 public:
00043
00044
00045
00046
00049
00058 virtual void addNamespaceBinding(const XMLCh* prefix, const XMLCh* uri) = 0;
00059
00066 virtual const XMLCh* lookupNamespaceURI(const XMLCh* prefix) const = 0;
00067
00078 virtual const XMLCh* lookupPrefix(const XMLCh* uri) const = 0;
00079
00081
00090 virtual void release() = 0;
00092
00093 protected:
00094
00095
00096
00099 XQillaNSResolver() {};
00101 };
00102
00103
00104 #endif //__XQILLANSRESOLVER_HPP