Home | History | Annotate | Download | only in tinyxml

Lines Matching refs:COMMENT

139 							Comment (leaf)
146 Comment (leaf)
428 COMMENT,
442 Comment: the comment text
463 Comment: the comment text
622 The possible types are: DOCUMENT, ELEMENT, COMMENT,
638 const TiXmlComment* ToComment() const { return ( this && type == COMMENT ) ? (const TiXmlComment*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
645 TiXmlComment* ToComment() { return ( this && type == COMMENT ) ? (TiXmlComment*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
1020 /** An XML comment.
1025 /// Constructs an empty comment.
1026 TiXmlComment() : TiXmlNode( TiXmlNode::COMMENT ) {}
1032 /// Returns a copy of this Comment.
1034 /// Write this Comment to a FILE stream.