MCPcopy Create free account
hub / github.com/PolygonTek/BlueshiftEngine / QueryFloatAttribute

Function QueryFloatAttribute

Source/ThirdParty/tinyxml2/tinyxml2.h:1327–1333  ·  view source on GitHub ↗

See QueryIntAttribute()

Source from the content-addressed store, hash-verified

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

Callers 2

FloatAttributeFunction · 0.85
QueryAttributeFunction · 0.85

Calls 2

FindAttributeFunction · 0.85
QueryFloatValueMethod · 0.80

Tested by

no test coverage detected