DOM_CDataSection objects refer to the data from an
* XML CDATA section. These are used to escape blocks of text containing characters
* that would otherwise be regarded as markup.
*
* Note that the string data associated with the CDATA section may * contain characters that need to be escaped when appearing in an * XML document outside of a CDATA section. *
The IDOM_CDATASection class inherits from the
* DOM_CharacterData class through the Text
* interface. Adjacent CDATASection nodes are not merged by use
* of the Element.normalize() method.
*/
class CDOM_EXPORT IDOM_CDATASection: public IDOM_Text {
protected:
IDOM_CDATASection() {};
IDOM_CDATASection(const IDOM_CDATASection &other) {};
IDOM_CDATASection & operator = (const IDOM_CDATASection &other) {return *this;};
public:
virtual ~IDOM_CDATASection() {};
};
#endif