| 543 | |
| 544 | |
| 545 | void TiXmlElement::ClearThis() |
| 546 | { |
| 547 | Clear(); |
| 548 | while( attributeSet.First() ) |
| 549 | { |
| 550 | TiXmlAttribute* node = attributeSet.First(); |
| 551 | attributeSet.Remove( node ); |
| 552 | delete node; |
| 553 | } |
| 554 | } |
| 555 | |
| 556 | |
| 557 | const char* TiXmlElement::Attribute( const char* name ) const |