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(XALANDOCUMENTBUILDER_HEADER_GUARD) 00017 #define XALANDOCUMENTBUILDER_HEADER_GUARD 00018 00019 00020 00021 // Base include file. Must be first. 00022 #include <xalanc/XalanTransformer/XalanTransformerDefinitions.hpp> 00023 00024 00025 00026 // Base class include file. 00027 #include <xalanc/XalanTransformer/XalanParsedSource.hpp> 00028 00029 00030 00031 XALAN_DECLARE_XERCES_CLASS(ContentHandler) 00032 XALAN_DECLARE_XERCES_CLASS(DTDHandler) 00033 XALAN_DECLARE_XERCES_CLASS(LexicalHandler) 00034 00035 00036 00037 XALAN_CPP_NAMESPACE_BEGIN 00038 00039 00040 00041 typedef XERCES_CPP_NAMESPACE_QUALIFIER ContentHandler ContentHandlerType; 00042 typedef XERCES_CPP_NAMESPACE_QUALIFIER DTDHandler DTDHandlerType; 00043 typedef XERCES_CPP_NAMESPACE_QUALIFIER LexicalHandler LexicalHandlerType; 00044 00045 00046 00047 class DOMSupport; 00048 class XalanDocument; 00049 00050 00051 00056 class XALAN_TRANSFORMER_EXPORT XalanDocumentBuilder : public XalanParsedSource 00057 { 00058 public: 00059 00060 virtual 00061 ~XalanDocumentBuilder() 00062 { 00063 } 00064 00065 // These are inherited from XalanParsedSource... 00066 virtual XalanDocument* 00067 getDocument() const = 0; 00068 00069 virtual XalanParsedSourceHelper* 00070 createHelper() const = 0; 00071 00072 virtual const XalanDOMString& 00073 getURI() const = 0; 00074 00075 // These are new to XalanDocumentBuilder... 00076 virtual ContentHandlerType* 00077 getContentHandler() = 0; 00078 00079 virtual DTDHandlerType* 00080 getDTDHandler() = 0; 00081 00082 virtual LexicalHandlerType* 00083 getLexicalHandler() = 0; 00084 00085 private: 00086 }; 00087 00088 00089 00090 XALAN_CPP_NAMESPACE_END 00091 00092 00093 00094 #endif // XALANDOCUMENTBUILDER_HEADER_GUARD
Doxygen and GraphViz are used to generate this API documentation from the Xalan-C header files.
![]() |
Xalan-C++ XSLT Processor Version 1.8 |
|