| 985 | |
| 986 | |
| 987 | bool XMLText::ShallowEqual( const XMLNode* compare ) const |
| 988 | { |
| 989 | const XMLText* text = compare->ToText(); |
| 990 | return ( text && XMLUtil::StringEqual( text->Value(), Value() ) ); |
| 991 | } |
| 992 | |
| 993 | |
| 994 | bool XMLText::Accept( XMLVisitor* visitor ) const |
nothing calls this directly
no test coverage detected