| 459 | } |
| 460 | |
| 461 | TiXmlElement::~TiXmlElement() |
| 462 | { |
| 463 | while( attributeSet.First() ) |
| 464 | { |
| 465 | TiXmlAttribute* node = attributeSet.First(); |
| 466 | attributeSet.Remove( node ); |
| 467 | delete node; |
| 468 | } |
| 469 | } |
| 470 | |
| 471 | const TCHAR * TiXmlElement::Attribute( const TCHAR * name ) const |
| 472 | { |