00001 #ifndef DOMCDataSection_HEADER_GUARD_ 00002 #define DOMCDataSection_HEADER_GUARD_ 00003 00004 00005 /* 00006 * Licensed to the Apache Software Foundation (ASF) under one or more 00007 * contributor license agreements. See the NOTICE file distributed with 00008 * this work for additional information regarding copyright ownership. 00009 * The ASF licenses this file to You under the Apache License, Version 2.0 00010 * (the "License"); you may not use this file except in compliance with 00011 * the License. You may obtain a copy of the License at 00012 * 00013 * http://www.apache.org/licenses/LICENSE-2.0 00014 * 00015 * Unless required by applicable law or agreed to in writing, software 00016 * distributed under the License is distributed on an "AS IS" BASIS, 00017 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00018 * See the License for the specific language governing permissions and 00019 * limitations under the License. 00020 */ 00021 00022 /* 00023 * $Id: DOMCDATASection.hpp 568078 2007-08-21 11:43:25Z amassari $ 00024 */ 00025 00026 #include <xercesc/util/XercesDefs.hpp> 00027 #include <xercesc/dom/DOMText.hpp> 00028 00029 XERCES_CPP_NAMESPACE_BEGIN 00030 00031 00066 class CDOM_EXPORT DOMCDATASection: public DOMText { 00067 protected: 00068 // ----------------------------------------------------------------------- 00069 // Hidden constructors 00070 // ----------------------------------------------------------------------- 00073 DOMCDATASection() {} 00074 DOMCDATASection(const DOMCDATASection &other) : DOMText(other) {} 00076 00077 private: 00078 // ----------------------------------------------------------------------- 00079 // Unimplemented constructors and operators 00080 // ----------------------------------------------------------------------- 00083 DOMCDATASection & operator = (const DOMCDATASection &); 00085 00086 public: 00087 // ----------------------------------------------------------------------- 00088 // All constructors are hidden, just the destructor is available 00089 // ----------------------------------------------------------------------- 00096 virtual ~DOMCDATASection() {}; 00098 00099 }; 00100 00101 XERCES_CPP_NAMESPACE_END 00102 00103 #endif 00104 00105