MCPcopy Create free account
hub / github.com/MediaArea/MediaInfoLib / QueryBoolAttribute

Function QueryBoolAttribute

Source/ThirdParty/tinyxml2/tinyxml2.h:1352–1358  ·  view source on GitHub ↗

See QueryIntAttribute()

Source from the content-addressed store, hash-verified

1350
1351 /// See QueryIntAttribute()
1352 XMLError QueryBoolAttribute( const char* name, bool* value ) const {
1353 const XMLAttribute* a = FindAttribute( name );
1354 if ( !a ) {
1355 return XML_NO_ATTRIBUTE;
1356 }
1357 return a->QueryBoolValue( value );
1358 }
1359 /// See QueryIntAttribute()
1360 XMLError QueryDoubleAttribute( const char* name, double* value ) const {
1361 const XMLAttribute* a = FindAttribute( name );

Callers 2

QueryAttributeFunction · 0.85
BoolAttributeMethod · 0.85

Calls 2

FindAttributeFunction · 0.85
QueryBoolValueMethod · 0.80

Tested by

no test coverage detected