See QueryIntAttribute()
| 1467 | |
| 1468 | /// See QueryIntAttribute() |
| 1469 | XMLError QueryUnsignedAttribute(const char* name, unsigned int* value) const |
| 1470 | { |
| 1471 | const XMLAttribute* a = FindAttribute(name); |
| 1472 | if (!a) |
| 1473 | { |
| 1474 | return XML_NO_ATTRIBUTE; |
| 1475 | } |
| 1476 | return a->QueryUnsignedValue(value); |
| 1477 | } |
| 1478 | |
| 1479 | /// See QueryIntAttribute() |
| 1480 | XMLError QueryInt64Attribute(const char* name, xml_Int64a_t* value) const |
no test coverage detected