Given an attribute name, QueryAttribute() returns XML_NO_ERROR, XML_WRONG_ATTRIBUTE_TYPE if the conversion can't be performed, or XML_NO_ATTRIBUTE if the attribute doesn't exist. It is overloaded for the primitive types, and is a generally more convenient replacement of QueryIntAttribute() and related functions. If successful, the result of the conversion will be writt
| 1351 | @endverbatim |
| 1352 | */ |
| 1353 | int QueryAttribute( const char* name, int* value ) const { |
| 1354 | return QueryIntAttribute( name, value ); |
| 1355 | } |
| 1356 | |
| 1357 | int QueryAttribute( const char* name, unsigned int* value ) const { |
| 1358 | return QueryUnsignedAttribute( name, value ); |
nothing calls this directly
no test coverage detected