| 1173 | |
| 1174 | |
| 1175 | bool XMLText::ShallowEqual( const XMLNode* compare ) const |
| 1176 | { |
| 1177 | TIXMLASSERT( compare ); |
| 1178 | const XMLText* text = compare->ToText(); |
| 1179 | return ( text && XMLUtil::StringEqual( text->Value(), Value() ) ); |
| 1180 | } |
| 1181 | |
| 1182 | |
| 1183 | bool XMLText::Accept( XMLVisitor* visitor ) const |
nothing calls this directly
no test coverage detected