| 1490 | } |
| 1491 | |
| 1492 | XMLError XMLAttribute::QueryFloatValue(float* value) const |
| 1493 | { |
| 1494 | if (XMLUtil::ToFloat(Value(), value)) |
| 1495 | { |
| 1496 | return XML_SUCCESS; |
| 1497 | } |
| 1498 | return XML_WRONG_ATTRIBUTE_TYPE; |
| 1499 | } |
| 1500 | |
| 1501 | XMLError XMLAttribute::QueryDoubleValue(double* value) const |
| 1502 | { |
no outgoing calls
no test coverage detected