See QueryIntAttribute()
| 1499 | } |
| 1500 | /// See QueryIntAttribute() |
| 1501 | XMLError QueryDoubleAttribute(const char* name, double* value) const |
| 1502 | { |
| 1503 | const XMLAttribute* a = FindAttribute(name); |
| 1504 | if (!a) |
| 1505 | { |
| 1506 | return XML_NO_ATTRIBUTE; |
| 1507 | } |
| 1508 | return a->QueryDoubleValue(value); |
| 1509 | } |
| 1510 | /// See QueryIntAttribute() |
| 1511 | XMLError QueryFloatAttribute(const char* name, float* value) const |
| 1512 | { |
no test coverage detected