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