Lines Matching refs:TiXmlComment
87 class TiXmlComment;
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.
1022 class TiXmlComment : public TiXmlNode
1026 TiXmlComment() : TiXmlNode( TiXmlNode::COMMENT ) {}
1027 TiXmlComment( const TiXmlComment& );
1028 void operator=( const TiXmlComment& base );
1030 virtual ~TiXmlComment() {}
1043 void CopyTo( TiXmlComment* target ) const;