| 1193 | |
| 1194 | |
| 1195 | const XMLAttribute* XMLElement::FindAttribute( const char* name ) const { |
| 1196 | for( XMLAttribute* a = _rootAttribute; a; a = a->_next ) { |
| 1197 | if ( XMLUtil::StringEqual( a->Name(), name ) ) { |
| 1198 | return a; |
| 1199 | } |
| 1200 | } |
| 1201 | return 0; |
| 1202 | } |
| 1203 | |
| 1204 | |
| 1205 | const char* XMLElement::Attribute( const char* name, const char* value ) const { |
no test coverage detected