| 1441 | |
| 1442 | |
| 1443 | const char* XMLElement::Attribute( const char* name, const char* value ) const |
| 1444 | { |
| 1445 | const XMLAttribute* a = FindAttribute( name ); |
| 1446 | if ( !a ) { |
| 1447 | return 0; |
| 1448 | } |
| 1449 | if ( !value || XMLUtil::StringEqual( a->Value(), value )) { |
| 1450 | return a->Value(); |
| 1451 | } |
| 1452 | return 0; |
| 1453 | } |
| 1454 | |
| 1455 | |
| 1456 | const char* XMLElement::GetText() const |
nothing calls this directly
no test coverage detected