| 1565 | |
| 1566 | #ifdef TIXML_USE_STL |
| 1567 | TiXmlAttribute* TiXmlAttributeSet::Find( const std::string& name ) const |
| 1568 | { |
| 1569 | for( TiXmlAttribute* node = sentinel.next; node != &sentinel; node = node->next ) |
| 1570 | { |
| 1571 | if ( node->name == name ) |
| 1572 | return node; |
| 1573 | } |
| 1574 | return 0; |
| 1575 | } |
| 1576 | |
| 1577 | TiXmlAttribute* TiXmlAttributeSet::FindOrCreate( const std::string& _name ) |
| 1578 | { |
no test coverage detected