00001 /* 00002 Copyright 1996-2001 00003 Simon Whiteside 00004 00005 * $Id: skCDataNode.h,v 1.1 2001/11/16 21:20:18 sdw Exp $ 00006 */ 00007 #ifndef skCDATANODE_H 00008 #define skCDATANODE_H 00009 00010 #include "skTextNode.h" 00011 00015 class CLASSEXPORT skCDataNode : public skTextNode 00016 { 00017 public: 00022 skCDataNode(const skString& text); 00027 virtual NodeType getNodeType() const; 00032 virtual skNode * clone(); 00037 virtual void write(ostream& out) const; 00038 }; 00039 #endif