| 1542 | |
| 1543 | #ifdef TIXML_USE_STL |
| 1544 | const TiXmlAttribute* TiXmlAttributeSet::Find( const std::string& name ) const |
| 1545 | { |
| 1546 | for( const TiXmlAttribute* node = sentinel.next; node != &sentinel; node = node->next ) |
| 1547 | { |
| 1548 | if ( node->name == name ) |
| 1549 | return node; |
| 1550 | } |
| 1551 | return 0; |
| 1552 | } |
| 1553 | |
| 1554 | /* |
| 1555 | TiXmlAttribute* TiXmlAttributeSet::Find( const std::string& name ) |
no test coverage detected