Warning, file /include/opencascade/LDOM_Comment.hxx was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #ifndef LDOM_Comment_HeaderFile
0017 #define LDOM_Comment_HeaderFile
0018
0019 #include <LDOM_CharacterData.hxx>
0020
0021
0022
0023 class LDOM_Comment : public LDOM_CharacterData
0024 {
0025 public:
0026
0027
0028 LDOM_Comment () {}
0029
0030
0031 LDOM_Comment (const LDOM_Comment& theOther) : LDOM_CharacterData (theOther) {}
0032
0033
0034 LDOM_Comment& operator = (const LDOM_NullPtr * theNull)
0035 { return (LDOM_Comment&) LDOM_CharacterData::operator = (theNull); }
0036
0037
0038 LDOM_Comment& operator = (const LDOM_Comment& theOther)
0039 { return (LDOM_Comment&) LDOM_CharacterData::operator = (theOther); }
0040
0041
0042 protected:
0043 friend class LDOM_Document;
0044
0045
0046 LDOM_Comment (const LDOM_BasicText& theText,
0047 const Handle(LDOM_MemManager)& theDoc)
0048 : LDOM_CharacterData (theText, theDoc) {}
0049 };
0050
0051 #endif