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

Function QueryUnsignedAttribute

lib/tinyxml2/tinyxml2.h:1278–1284  ·  view source on GitHub ↗

See QueryIntAttribute()

Source from the content-addressed store, hash-verified

1276 }
1277 /// See QueryIntAttribute()
1278 XMLError QueryUnsignedAttribute( const char* name, unsigned int* value ) const {
1279 const XMLAttribute* a = FindAttribute( name );
1280 if ( !a ) {
1281 return XML_NO_ATTRIBUTE;
1282 }
1283 return a->QueryUnsignedValue( value );
1284 }
1285 /// See QueryIntAttribute()
1286 XMLError QueryBoolAttribute( const char* name, bool* value ) const {
1287 const XMLAttribute* a = FindAttribute( name );

Callers 2

UnsignedAttributeFunction · 0.85
QueryAttributeFunction · 0.85

Calls 2

FindAttributeFunction · 0.85
QueryUnsignedValueMethod · 0.80

Tested by

no test coverage detected