00001 /* 00002 * Copyright 1999-2004 The Apache Software Foundation. 00003 * 00004 * Licensed under the Apache License, Version 2.0 (the "License"); 00005 * you may not use this file except in compliance with the License. 00006 * You may obtain a copy of the License at 00007 * 00008 * http://www.apache.org/licenses/LICENSE-2.0 00009 * 00010 * Unless required by applicable law or agreed to in writing, software 00011 * distributed under the License is distributed on an "AS IS" BASIS, 00012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00013 * See the License for the specific language governing permissions and 00014 * limitations under the License. 00015 */ 00016 #if !defined(XPATHPROCESSOR_HEADER_GUARD_1357924680) 00017 #define XPATHPROCESSOR_HEADER_GUARD_1357924680 00018 00019 00020 00021 // Base include file. Must be first. 00022 #include <xalanc/XPath/XPathDefinitions.hpp> 00023 00024 00025 00026 // $$$ ToDo: This is necessary while XalanDOMString is still a typedef... 00027 #include <xalanc/XalanDOM/XalanDOMString.hpp> 00028 00029 00030 00031 00032 XALAN_DECLARE_XERCES_CLASS(Locator) 00033 00034 00035 00036 XALAN_CPP_NAMESPACE_BEGIN 00037 00038 00039 00040 class Function; 00041 class PrefixResolver; 00042 class XPath; 00043 class XPathConstructionContext; 00044 00045 00046 00047 class XALAN_XPATH_EXPORT XPathProcessor 00048 { 00049 public: 00050 00051 typedef XERCES_CPP_NAMESPACE_QUALIFIER Locator LocatorType; 00052 00053 explicit 00054 XPathProcessor(); 00055 00056 virtual 00057 ~XPathProcessor(); 00058 00071 virtual void 00072 initXPath( 00073 XPath& pathObj, 00074 XPathConstructionContext& constructionContext, 00075 const XalanDOMString& expression, 00076 const PrefixResolver& resolver, 00077 const LocatorType* locator = 0, 00078 bool allowVariableReferences = true, 00079 bool allowKeyFunction = true) = 0; 00080 00092 virtual void 00093 initMatchPattern( 00094 XPath& pathObj, 00095 XPathConstructionContext& constructionContext, 00096 const XalanDOMString& expression, 00097 const PrefixResolver& resolver, 00098 const LocatorType* locator = 0, 00099 bool allowVariableReferences = true, 00100 bool allowKeyFunction = true) = 0; 00101 00109 static void 00110 installFunction( 00111 const XalanDOMString& theFunctionName, 00112 const Function& theFunction); 00113 }; 00114 00115 00116 00117 XALAN_CPP_NAMESPACE_END 00118 00119 00120 00121 #endif // XPATHPROCESSOR_HEADER_GUARD_1357924680
Doxygen and GraphViz are used to generate this API documentation from the Xalan-C header files.
Xalan-C++ XSLT Processor Version 1.10 |
|