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