MCPcopy Create free account
hub / github.com/BehaviorTree/BehaviorTree.CPP / QueryDoubleAttribute

Function QueryDoubleAttribute

3rdparty/tinyxml2/tinyxml2.h:1389–1395  ·  view source on GitHub ↗

See QueryIntAttribute()

Source from the content-addressed store, hash-verified

1387 }
1388 /// See QueryIntAttribute()
1389 XMLError QueryDoubleAttribute( const char* name, double* value ) const {
1390 const XMLAttribute* a = FindAttribute( name );
1391 if ( !a ) {
1392 return XML_NO_ATTRIBUTE;
1393 }
1394 return a->QueryDoubleValue( value );
1395 }
1396 /// See QueryIntAttribute()
1397 XMLError QueryFloatAttribute( const char* name, float* value ) const {
1398 const XMLAttribute* a = FindAttribute( name );

Callers 2

QueryAttributeFunction · 0.85
DoubleAttributeMethod · 0.85

Calls 1

QueryDoubleValueMethod · 0.80

Tested by

no test coverage detected