| 1443 | |
| 1444 | |
| 1445 | XMLError XMLAttribute::QueryIntValue( int* value ) const |
| 1446 | { |
| 1447 | if ( XMLUtil::ToInt( Value(), value )) { |
| 1448 | return XML_SUCCESS; |
| 1449 | } |
| 1450 | return XML_WRONG_ATTRIBUTE_TYPE; |
| 1451 | } |
| 1452 | |
| 1453 | |
| 1454 | XMLError XMLAttribute::QueryUnsignedValue( unsigned int* value ) const |
no test coverage detected