| 1184 | |
| 1185 | |
| 1186 | XMLElement::~XMLElement() { |
| 1187 | while( _rootAttribute ) { |
| 1188 | XMLAttribute* next = _rootAttribute->_next; |
| 1189 | DeleteAttribute( _rootAttribute ); |
| 1190 | _rootAttribute = next; |
| 1191 | } |
| 1192 | } |
| 1193 | |
| 1194 | |
| 1195 | const XMLAttribute* XMLElement::FindAttribute( const char* name ) const { |
nothing calls this directly
no outgoing calls
no test coverage detected