| 913 | |
| 914 | |
| 915 | bool XMLText::ShallowEqual( const XMLNode* compare ) const |
| 916 | { |
| 917 | const XMLText* text = compare->ToText(); |
| 918 | return ( text && XMLUtil::StringEqual( text->Value(), Value() ) ); |
| 919 | } |
| 920 | |
| 921 | |
| 922 | bool XMLText::Accept( XMLVisitor* visitor ) const |
nothing calls this directly
no test coverage detected