| 1215 | |
| 1216 | |
| 1217 | bool XMLText::ShallowEqual( const XMLNode* compare ) const |
| 1218 | { |
| 1219 | TIXMLASSERT( compare ); |
| 1220 | const XMLText* text = compare->ToText(); |
| 1221 | return ( text && XMLUtil::StringEqual( text->Value(), Value() ) ); |
| 1222 | } |
| 1223 | |
| 1224 | |
| 1225 | bool XMLText::Accept( XMLVisitor* visitor ) const |
nothing calls this directly
no test coverage detected