00001 /* 00002 * Licensed to the Apache Software Foundation (ASF) under one 00003 * or more contributor license agreements. See the NOTICE file 00004 * distributed with this work for additional information 00005 * regarding copyright ownership. The ASF licenses this file 00006 * to you under the Apache License, Version 2.0 (the "License"); 00007 * you may not use this file except in compliance with the License. 00008 * You may obtain a copy of the License at 00009 * 00010 * http://www.apache.org/licenses/LICENSE-2.0 00011 * 00012 * Unless required by applicable law or agreed to in writing, software 00013 * distributed under the License is distributed on an "AS IS" BASIS, 00014 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00015 * See the License for the specific language governing permissions and 00016 * limitations under the License. 00017 */ 00018 #if !defined(XALANCOMPILEDSTYLESHEETDEFAULT_HEADER_GUARD) 00019 #define XALANCOMPILEDSTYLESHEETDEFAULT_HEADER_GUARD 00020 00021 00022 00023 // Base include file. Must be first. 00024 #include <xalanc/XalanTransformer/XalanTransformerDefinitions.hpp> 00025 00026 00027 00028 #include <xalanc/XPath/XPathFactoryBlock.hpp> 00029 00030 00031 00032 #include <xalanc/XSLT/StylesheetConstructionContextDefault.hpp> 00033 #include <xalanc/XSLT/StylesheetExecutionContextDefault.hpp> 00034 #include <xalanc/XSLT/StylesheetRoot.hpp> 00035 #include <xalanc/XSLT/XSLTEngineImpl.hpp> 00036 #include <xalanc/XSLT/XSLTInputSource.hpp> 00037 #include <xalanc/XSLT/XSLTProcessorEnvSupportDefault.hpp> 00038 00039 00040 00041 #include <xalanc/XalanTransformer/XalanCompiledStylesheet.hpp> 00042 00043 00044 00045 XALAN_DECLARE_XERCES_CLASS(EntityResolver) 00046 XALAN_DECLARE_XERCES_CLASS(ErrorHandler) 00047 00048 00049 00050 XALAN_CPP_NAMESPACE_BEGIN 00051 00052 00053 00054 typedef XERCES_CPP_NAMESPACE_QUALIFIER EntityResolver EntityResolverType; 00055 typedef XERCES_CPP_NAMESPACE_QUALIFIER ErrorHandler ErrorHandlerType; 00056 00057 XALAN_USING_XERCES(EntityResolver) 00058 XALAN_USING_XERCES(ErrorHandler) 00059 00060 00061 class XALAN_TRANSFORMER_EXPORT XalanCompiledStylesheetDefault : public XalanCompiledStylesheet 00062 { 00063 public: 00064 00065 XalanCompiledStylesheetDefault( 00066 MemoryManager& theManager, 00067 const XSLTInputSource& theStylesheetSource, 00068 XSLTEngineImpl& theProcessor, 00069 ErrorHandler* theErrorHandler = 0, 00070 EntityResolver* theEntityResolver = 0); 00071 00072 00073 static XalanCompiledStylesheetDefault* 00074 create( 00075 MemoryManager& theManager, 00076 const XSLTInputSource& theStylesheetSource, 00077 XSLTEngineImpl& theProcessor, 00078 ErrorHandler* theErrorHandler = 0, 00079 EntityResolver* theEntityResolver = 0); 00080 00081 virtual 00082 ~XalanCompiledStylesheetDefault(); 00083 00084 virtual const StylesheetRoot* 00085 getStylesheetRoot() const; 00086 00087 private: 00088 00089 XPathFactoryBlock m_stylesheetXPathFactory; 00090 00091 StylesheetConstructionContextDefault m_stylesheetConstructionContext; 00092 00093 const StylesheetRoot* const m_stylesheetRoot; 00094 }; 00095 00096 00097 00098 XALAN_CPP_NAMESPACE_END 00099 00100 00101 00102 #endif // XALANCOMPILEDSTYLESHEETDEFAULT_HEADER_GUARD
Doxygen and GraphViz are used to generate this API documentation from the Xalan-C header files.
Xalan-C++ XSLT Processor Version 1.11 |
|