MCPcopy Create free account
hub / github.com/crossuo/crossuo / QueryBoolAttribute

Function QueryBoolAttribute

external/tinyxml2.h:1397–1403  ·  view source on GitHub ↗

See QueryIntAttribute()

Source from the content-addressed store, hash-verified

1395
1396 /// See QueryIntAttribute()
1397 XMLError QueryBoolAttribute( const char* name, bool* value ) const {
1398 const XMLAttribute* a = FindAttribute( name );
1399 if ( !a ) {
1400 return XML_NO_ATTRIBUTE;
1401 }
1402 return a->QueryBoolValue( value );
1403 }
1404 /// See QueryIntAttribute()
1405 XMLError QueryDoubleAttribute( const char* name, double* value ) const {
1406 const XMLAttribute* a = FindAttribute( name );

Callers 2

QueryAttributeFunction · 0.85
BoolAttributeMethod · 0.85

Calls 1

QueryBoolValueMethod · 0.80

Tested by

no test coverage detected