| 1180 | |
| 1181 | |
| 1182 | bool XMLText::ShallowEqual( const XMLNode* compare ) const |
| 1183 | { |
| 1184 | TIXMLASSERT( compare ); |
| 1185 | const XMLText* text = compare->ToText(); |
| 1186 | return ( text && XMLUtil::StringEqual( text->Value(), Value() ) ); |
| 1187 | } |
| 1188 | |
| 1189 | |
| 1190 | bool XMLText::Accept( XMLVisitor* visitor ) const |
nothing calls this directly
no test coverage detected