| 1305 | |
| 1306 | |
| 1307 | XMLError XMLAttribute::QueryIntValue( int* value ) const |
| 1308 | { |
| 1309 | if ( XMLUtil::ToInt( Value(), value )) { |
| 1310 | return XML_SUCCESS; |
| 1311 | } |
| 1312 | return XML_WRONG_ATTRIBUTE_TYPE; |
| 1313 | } |
| 1314 | |
| 1315 | |
| 1316 | XMLError XMLAttribute::QueryUnsignedValue( unsigned int* value ) const |
no test coverage detected