Lines Matching refs:TiXmlComment
85 class TiXmlComment; variable
148 virtual bool Visit( const TiXmlComment& /*comment*/ ) { return true; } in Visit() argument
699 …virtual const TiXmlComment* ToComment() const { return 0; } ///< Cast to a more defined ty… in ToComment()
706 …virtual TiXmlComment* ToComment() { return 0; } ///< Cast to a more defined type. Wi… in ToComment()
1162 class TiXmlComment : public TiXmlNode
1166 TiXmlComment() : TiXmlNode( TiXmlNode::TINYXML_COMMENT ) {} in TiXmlComment() function
1168 TiXmlComment( const char* _value ) : TiXmlNode( TiXmlNode::TINYXML_COMMENT ) { in TiXmlComment() function
1171 TiXmlComment( const TiXmlComment& );
1172 TiXmlComment& operator=( const TiXmlComment& base );
1174 virtual ~TiXmlComment() {} in ~TiXmlComment()
1186 …virtual const TiXmlComment* ToComment() const { return this; } ///< Cast to a more defined type. … in ToComment()
1187 …virtual TiXmlComment* ToComment() { return this; } ///< Cast to a more defined type. Will ret… in ToComment()
1194 void CopyTo( TiXmlComment* target ) const;
1751 virtual bool Visit( const TiXmlComment& comment );