| 1458 | |
| 1459 | #ifdef TIXML_USE_STL |
| 1460 | const TiXmlAttribute* TiXmlAttributeSet::Find(const xr_string& name) const |
| 1461 | { |
| 1462 | for (const TiXmlAttribute* node = sentinel.next; node != &sentinel; node = node->next) |
| 1463 | { |
| 1464 | if (node->name == name) |
| 1465 | return node; |
| 1466 | } |
| 1467 | return 0; |
| 1468 | } |
| 1469 | |
| 1470 | /* |
| 1471 | TiXmlAttribute* TiXmlAttributeSet::Find( const xr_string& name ) |
no test coverage detected