See QueryIntAttribute()
| 1520 | |
| 1521 | /// See QueryIntAttribute() |
| 1522 | XMLError QueryStringAttribute(const char* name, const char** value) const |
| 1523 | { |
| 1524 | const XMLAttribute* a = FindAttribute(name); |
| 1525 | if (!a) |
| 1526 | { |
| 1527 | return XML_NO_ATTRIBUTE; |
| 1528 | } |
| 1529 | *value = a->Value(); |
| 1530 | return XML_SUCCESS; |
| 1531 | } |
| 1532 | |
| 1533 | /** Given an attribute name, QueryAttribute() returns |
| 1534 | XML_SUCCESS, XML_WRONG_ATTRIBUTE_TYPE if the conversion |
nothing calls this directly
no test coverage detected