| 1572 | } |
| 1573 | |
| 1574 | const XMLAttribute* XMLElement::FindAttribute(const char* name) const |
| 1575 | { |
| 1576 | for (XMLAttribute* a = _rootAttribute; a; a = a->_next) |
| 1577 | { |
| 1578 | if (XMLUtil::StringEqual(a->Name(), name)) |
| 1579 | { |
| 1580 | return a; |
| 1581 | } |
| 1582 | } |
| 1583 | return 0; |
| 1584 | } |
| 1585 | |
| 1586 | const char* XMLElement::Attribute(const char* name, const char* value) const |
| 1587 | { |
no test coverage detected