| 1314 | |
| 1315 | |
| 1316 | XMLError XMLAttribute::QueryUnsignedValue( unsigned int* value ) const |
| 1317 | { |
| 1318 | if ( XMLUtil::ToUnsigned( Value(), value )) { |
| 1319 | return XML_SUCCESS; |
| 1320 | } |
| 1321 | return XML_WRONG_ATTRIBUTE_TYPE; |
| 1322 | } |
| 1323 | |
| 1324 | |
| 1325 | XMLError XMLAttribute::QueryInt64Value(int64_t* value) const |
no test coverage detected