| 1505 | |
| 1506 | |
| 1507 | const XMLAttribute* XMLElement::FindAttribute( const char* name ) const |
| 1508 | { |
| 1509 | for( XMLAttribute* a = _rootAttribute; a; a = a->_next ) { |
| 1510 | if ( XMLUtil::StringEqual( a->Name(), name ) ) { |
| 1511 | return a; |
| 1512 | } |
| 1513 | } |
| 1514 | return 0; |
| 1515 | } |
| 1516 | |
| 1517 | |
| 1518 | const char* XMLElement::Attribute( const char* name, const char* value ) const |
no test coverage detected