MCPcopy Create free account
hub / github.com/MediaArea/MediaInfoLib / QueryFloatAttribute

Function QueryFloatAttribute

Source/ThirdParty/tinyxml2/tinyxml2.h:1368–1374  ·  view source on GitHub ↗

See QueryIntAttribute()

Source from the content-addressed store, hash-verified

1366 }
1367 /// See QueryIntAttribute()
1368 XMLError QueryFloatAttribute( const char* name, float* value ) const {
1369 const XMLAttribute* a = FindAttribute( name );
1370 if ( !a ) {
1371 return XML_NO_ATTRIBUTE;
1372 }
1373 return a->QueryFloatValue( value );
1374 }
1375
1376 /// See QueryIntAttribute()
1377 XMLError QueryStringAttribute(const char* name, const char** value) const {

Callers 2

QueryAttributeFunction · 0.85
FloatAttributeMethod · 0.85

Calls 2

FindAttributeFunction · 0.85
QueryFloatValueMethod · 0.80

Tested by

no test coverage detected