See QueryIntAttribute()
| 1300 | } |
| 1301 | /// See QueryIntAttribute() |
| 1302 | XMLError QueryFloatAttribute( const char* name, float* value ) const { |
| 1303 | const XMLAttribute* a = FindAttribute( name ); |
| 1304 | if ( !a ) { |
| 1305 | return XML_NO_ATTRIBUTE; |
| 1306 | } |
| 1307 | return a->QueryFloatValue( value ); |
| 1308 | } |
| 1309 | |
| 1310 | |
| 1311 | /** Given an attribute name, QueryAttribute() returns |
no test coverage detected