| 1261 | } |
| 1262 | |
| 1263 | bool XMLText::ShallowEqual(const XMLNode* compare) const |
| 1264 | { |
| 1265 | TIXMLASSERT(compare); |
| 1266 | const XMLText* text = compare->ToText(); |
| 1267 | return (text && XMLUtil::StringEqual(text->Value(), Value())); |
| 1268 | } |
| 1269 | |
| 1270 | bool XMLText::Accept(XMLVisitor* visitor) const |
| 1271 | { |
nothing calls this directly
no test coverage detected