MCPcopy Create free account
hub / github.com/PolygonTek/BlueshiftEngine / QueryUnsignedAttribute

Function QueryUnsignedAttribute

Source/ThirdParty/tinyxml2/tinyxml2.h:1293–1299  ·  view source on GitHub ↗

See QueryIntAttribute()

Source from the content-addressed store, hash-verified

1291
1292 /// See QueryIntAttribute()
1293 XMLError QueryUnsignedAttribute( const char* name, unsigned int* value ) const {
1294 const XMLAttribute* a = FindAttribute( name );
1295 if ( !a ) {
1296 return XML_NO_ATTRIBUTE;
1297 }
1298 return a->QueryUnsignedValue( value );
1299 }
1300
1301 /// See QueryIntAttribute()
1302 XMLError QueryInt64Attribute(const char* name, int64_t* value) const {

Callers 2

UnsignedAttributeFunction · 0.85
QueryAttributeFunction · 0.85

Calls 2

FindAttributeFunction · 0.85
QueryUnsignedValueMethod · 0.80

Tested by

no test coverage detected