| 1478 | |
| 1479 | |
| 1480 | XMLError XMLAttribute::QueryBoolValue( bool* value ) const |
| 1481 | { |
| 1482 | if ( XMLUtil::ToBool( Value(), value )) { |
| 1483 | return XML_SUCCESS; |
| 1484 | } |
| 1485 | return XML_WRONG_ATTRIBUTE_TYPE; |
| 1486 | } |
| 1487 | |
| 1488 | |
| 1489 | XMLError XMLAttribute::QueryFloatValue( float* value ) const |
no test coverage detected