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

Function QueryBoolAttribute

lib/tinyxml2/tinyxml2.h:1286–1292  ·  view source on GitHub ↗

See QueryIntAttribute()

Source from the content-addressed store, hash-verified

1284 }
1285 /// See QueryIntAttribute()
1286 XMLError QueryBoolAttribute( const char* name, bool* value ) const {
1287 const XMLAttribute* a = FindAttribute( name );
1288 if ( !a ) {
1289 return XML_NO_ATTRIBUTE;
1290 }
1291 return a->QueryBoolValue( value );
1292 }
1293 /// See QueryIntAttribute()
1294 XMLError QueryDoubleAttribute( const char* name, double* value ) const {
1295 const XMLAttribute* a = FindAttribute( name );

Callers 2

BoolAttributeFunction · 0.85
QueryAttributeFunction · 0.85

Calls 2

FindAttributeFunction · 0.85
QueryBoolValueMethod · 0.80

Tested by

no test coverage detected