http://xml.apache.org/http://www.apache.org/http://www.w3.org/

Home

Readme
Charter
Release Info

Installation
Download
Build Instructions

FAQs
Samples
API Docs

DOM C++ Binding
Programming
Migration Guide

Feedback
Bug-Reporting
PDF Document

Source Repository
User Mail Archive
Devel Mail Archive

API Docs for SAX and DOM
 

DOMDocumentType.hpp

Go to the documentation of this file.
00001 #ifndef DOMDocumentType_HEADER_GUARD_
00002 #define DOMDocumentType_HEADER_GUARD_
00003 
00004 
00005 /*
00006  * Copyright 2001-2002,2004 The Apache Software Foundation.
00007  * 
00008  * Licensed under the Apache License, Version 2.0 (the "License");
00009  * you may not use this file except in compliance with the License.
00010  * You may obtain a copy of the License at
00011  * 
00012  *      http://www.apache.org/licenses/LICENSE-2.0
00013  * 
00014  * Unless required by applicable law or agreed to in writing, software
00015  * distributed under the License is distributed on an "AS IS" BASIS,
00016  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00017  * See the License for the specific language governing permissions and
00018  * limitations under the License.
00019  */
00020 
00021 /*
00022  * $Id: DOMDocumentType.hpp 176081 2004-09-26 15:38:03Z gareth $
00023  */
00024 
00025 #include <xercesc/util/XercesDefs.hpp>
00026 #include <xercesc/dom/DOMNode.hpp>
00027 
00028 XERCES_CPP_NAMESPACE_BEGIN
00029 
00030 
00031 class DOMNamedNodeMap;
00032 
00045 class  DOMDocumentType: public DOMNode {
00046 protected:
00047     // -----------------------------------------------------------------------
00048     //  Hidden constructors
00049     // -----------------------------------------------------------------------
00052     DOMDocumentType() {};
00054 
00055 private:
00056     // -----------------------------------------------------------------------
00057     // Unimplemented constructors and operators
00058     // -----------------------------------------------------------------------
00061     DOMDocumentType(const DOMDocumentType &);
00062     DOMDocumentType & operator = (const DOMDocumentType &);
00064 
00065 public:
00066     // -----------------------------------------------------------------------
00067     //  All constructors are hidden, just the destructor is available
00068     // -----------------------------------------------------------------------
00075     virtual ~DOMDocumentType() {};
00077 
00078     // -----------------------------------------------------------------------
00079     //  Virtual DOMDocumentType interface
00080     // -----------------------------------------------------------------------
00089     virtual const XMLCh *       getName() const = 0;
00090 
00108     virtual DOMNamedNodeMap *getEntities() const = 0;
00109 
00110 
00120     virtual DOMNamedNodeMap *getNotations() const = 0;
00122 
00131     virtual const XMLCh *     getPublicId() const = 0;
00132 
00139     virtual const XMLCh *     getSystemId() const = 0;
00140 
00151     virtual const XMLCh *     getInternalSubset() const = 0;
00153 
00154 };
00155 
00156 XERCES_CPP_NAMESPACE_END
00157 
00158 #endif
00159 
00160 


Copyright © 1994-2004 The Apache Software Foundation. All Rights Reserved.