See QueryIntAttribute()
| 1325 | } |
| 1326 | /// See QueryIntAttribute() |
| 1327 | XMLError QueryFloatAttribute( const char* name, float* value ) const { |
| 1328 | const XMLAttribute* a = FindAttribute( name ); |
| 1329 | if ( !a ) { |
| 1330 | return XML_NO_ATTRIBUTE; |
| 1331 | } |
| 1332 | return a->QueryFloatValue( value ); |
| 1333 | } |
| 1334 | |
| 1335 | |
| 1336 | /** Given an attribute name, QueryAttribute() returns |
no test coverage detected