| 1290 | |
| 1291 | |
| 1292 | XMLElement::~XMLElement() |
| 1293 | { |
| 1294 | while( _rootAttribute ) { |
| 1295 | XMLAttribute* next = _rootAttribute->_next; |
| 1296 | DeleteAttribute( _rootAttribute ); |
| 1297 | _rootAttribute = next; |
| 1298 | } |
| 1299 | } |
| 1300 | |
| 1301 | |
| 1302 | const XMLAttribute* XMLElement::FindAttribute( const char* name ) const |
nothing calls this directly
no outgoing calls
no test coverage detected