| 1451 | |
| 1452 | |
| 1453 | XMLError XMLAttribute::QueryUnsignedValue( unsigned int* value ) const |
| 1454 | { |
| 1455 | if ( XMLUtil::ToUnsigned( Value(), value )) { |
| 1456 | return XML_SUCCESS; |
| 1457 | } |
| 1458 | return XML_WRONG_ATTRIBUTE_TYPE; |
| 1459 | } |
| 1460 | |
| 1461 | |
| 1462 | XMLError XMLAttribute::QueryInt64Value(int64_t* value) const |
no test coverage detected