Not part of regular build. Added method for resolving by prefix only

git-svn-id: svn://10.0.0.236/trunk@82381 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
kvisco%ziplink.net 2000-11-07 10:47:17 +00:00
parent 5e2036fad3
commit c03e7cde3f

View File

@ -16,7 +16,7 @@
* Peter Van der Beken, Peter.VanderBeken@pandora.be
* -- original author.
*
* $Id: NamespaceResolver.h,v 1.2 2000-09-04 16:25:24 axel%pike.org Exp $
* $Id: NamespaceResolver.h,v 1.3 2000-11-07 10:47:17 kvisco%ziplink.net Exp $
*/
@ -37,6 +37,11 @@ public:
**/
virtual void getNameSpaceURI(const String& name, String& nameSpaceURI) = 0;
/**
* Returns the namespace URI for the given namespace prefix
**/
virtual void getNameSpaceURIFromPrefix(const String& prefix, String& nameSpaceURI) = 0;
}; //-- NamespaceResolver
/* */