MCPcopy Create free account
hub / github.com/JayXon/Leanify / QueryDoubleAttribute

Function QueryDoubleAttribute

lib/tinyxml2/tinyxml2.h:1294–1300  ·  view source on GitHub ↗

See QueryIntAttribute()

Source from the content-addressed store, hash-verified

1292 }
1293 /// See QueryIntAttribute()
1294 XMLError QueryDoubleAttribute( const char* name, double* value ) const {
1295 const XMLAttribute* a = FindAttribute( name );
1296 if ( !a ) {
1297 return XML_NO_ATTRIBUTE;
1298 }
1299 return a->QueryDoubleValue( value );
1300 }
1301 /// See QueryIntAttribute()
1302 XMLError QueryFloatAttribute( const char* name, float* value ) const {
1303 const XMLAttribute* a = FindAttribute( name );

Callers 2

DoubleAttributeFunction · 0.85
QueryAttributeFunction · 0.85

Calls 2

FindAttributeFunction · 0.85
QueryDoubleValueMethod · 0.80

Tested by

no test coverage detected