| 1405 | |
| 1406 | |
| 1407 | XMLError XMLAttribute::QueryBoolValue( bool* value ) const |
| 1408 | { |
| 1409 | if ( XMLUtil::ToBool( Value(), value )) { |
| 1410 | return XML_SUCCESS; |
| 1411 | } |
| 1412 | return XML_WRONG_ATTRIBUTE_TYPE; |
| 1413 | } |
| 1414 | |
| 1415 | |
| 1416 | XMLError XMLAttribute::QueryFloatValue( float* value ) const |
no test coverage detected