| 1097 | |
| 1098 | |
| 1099 | bool XMLText::ShallowEqual( const XMLNode* compare ) const |
| 1100 | { |
| 1101 | const XMLText* text = compare->ToText(); |
| 1102 | return ( text && XMLUtil::StringEqual( text->Value(), Value() ) ); |
| 1103 | } |
| 1104 | |
| 1105 | |
| 1106 | bool XMLText::Accept( XMLVisitor* visitor ) const |
nothing calls this directly
no test coverage detected