| 1552 | |
| 1553 | #ifdef TIXML_USE_STL |
| 1554 | const TiXmlAttribute* TiXmlAttributeSet::Find( const std::string& name ) const |
| 1555 | { |
| 1556 | for( const TiXmlAttribute* node = sentinel.next; node != &sentinel; node = node->next ) |
| 1557 | { |
| 1558 | if ( node->name == name ) |
| 1559 | return node; |
| 1560 | } |
| 1561 | return 0; |
| 1562 | } |
| 1563 | |
| 1564 | /* |
| 1565 | TiXmlAttribute* TiXmlAttributeSet::Find( const std::string& name ) |
no test coverage detected