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

Function QueryBoolAttribute

3rdparty/tinyxml2/tinyxml2.h:1381–1387  ·  view source on GitHub ↗

See QueryIntAttribute()

Source from the content-addressed store, hash-verified

1379
1380 /// See QueryIntAttribute()
1381 XMLError QueryBoolAttribute( const char* name, bool* value ) const {
1382 const XMLAttribute* a = FindAttribute( name );
1383 if ( !a ) {
1384 return XML_NO_ATTRIBUTE;
1385 }
1386 return a->QueryBoolValue( value );
1387 }
1388 /// See QueryIntAttribute()
1389 XMLError QueryDoubleAttribute( const char* name, double* value ) const {
1390 const XMLAttribute* a = FindAttribute( name );

Callers 2

QueryAttributeFunction · 0.85
BoolAttributeMethod · 0.85

Calls 1

QueryBoolValueMethod · 0.80

Tested by

no test coverage detected