| 1205 | |
| 1206 | |
| 1207 | bool XMLText::ShallowEqual( const XMLNode* compare ) const |
| 1208 | { |
| 1209 | TIXMLASSERT( compare ); |
| 1210 | const XMLText* text = compare->ToText(); |
| 1211 | return ( text && XMLUtil::StringEqual( text->Value(), Value() ) ); |
| 1212 | } |
| 1213 | |
| 1214 | |
| 1215 | bool XMLText::Accept( XMLVisitor* visitor ) const |
nothing calls this directly
no test coverage detected