| 563 | |
| 564 | |
| 565 | void TiXmlElement::ClearThis() |
| 566 | { |
| 567 | Clear(); |
| 568 | while( attributeSet.First() ) |
| 569 | { |
| 570 | TiXmlAttribute* node = attributeSet.First(); |
| 571 | attributeSet.Remove( node ); |
| 572 | delete node; |
| 573 | } |
| 574 | } |
| 575 | |
| 576 | |
| 577 | const char* TiXmlElement::Attribute( const char* name ) const |