| 1237 | |
| 1238 | |
| 1239 | bool XMLText::ShallowEqual( const XMLNode* compare ) const |
| 1240 | { |
| 1241 | TIXMLASSERT( compare ); |
| 1242 | const XMLText* text = compare->ToText(); |
| 1243 | return ( text && XMLUtil::StringEqual( text->Value(), Value() ) ); |
| 1244 | } |
| 1245 | |
| 1246 | |
| 1247 | bool XMLText::Accept( XMLVisitor* visitor ) const |
nothing calls this directly
no test coverage detected