See QueryIntAttribute()
| 1285 | } |
| 1286 | /// See QueryIntAttribute() |
| 1287 | XMLError QueryFloatAttribute( const char* name, float* value ) const { |
| 1288 | const XMLAttribute* a = FindAttribute( name ); |
| 1289 | if ( !a ) { |
| 1290 | return XML_NO_ATTRIBUTE; |
| 1291 | } |
| 1292 | return a->QueryFloatValue( value ); |
| 1293 | } |
| 1294 | |
| 1295 | |
| 1296 | /** Given an attribute name, QueryAttribute() returns |
no test coverage detected