| 1269 | |
| 1270 | |
| 1271 | bool XMLText::ShallowEqual( const XMLNode* compare ) const |
| 1272 | { |
| 1273 | TIXMLASSERT( compare ); |
| 1274 | const XMLText* text = compare->ToText(); |
| 1275 | return ( text && XMLUtil::StringEqual( text->Value(), Value() ) ); |
| 1276 | } |
| 1277 | |
| 1278 | |
| 1279 | bool XMLText::Accept( XMLVisitor* visitor ) const |
nothing calls this directly
no test coverage detected