See QueryIntAttribute()
| 1478 | |
| 1479 | /// See QueryIntAttribute() |
| 1480 | XMLError QueryInt64Attribute(const char* name, xml_Int64a_t* value) const |
| 1481 | { |
| 1482 | const XMLAttribute* a = FindAttribute(name); |
| 1483 | if (!a) |
| 1484 | { |
| 1485 | return XML_NO_ATTRIBUTE; |
| 1486 | } |
| 1487 | return a->QueryInt64Value(value); |
| 1488 | } |
| 1489 | |
| 1490 | /// See QueryIntAttribute() |
| 1491 | XMLError QueryBoolAttribute(const char* name, bool* value) const |
no test coverage detected