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

Function QueryUnsignedAttribute

external/tinyxml2.h:1361–1367  ·  view source on GitHub ↗

See QueryIntAttribute()

Source from the content-addressed store, hash-verified

1359
1360 /// See QueryIntAttribute()
1361 XMLError QueryUnsignedAttribute( const char* name, unsigned int* value ) const {
1362 const XMLAttribute* a = FindAttribute( name );
1363 if ( !a ) {
1364 return XML_NO_ATTRIBUTE;
1365 }
1366 return a->QueryUnsignedValue( value );
1367 }
1368
1369 /// See QueryIntAttribute()
1370 XMLError QueryInt64Attribute(const char* name, int64_t* value) const {

Callers 2

QueryAttributeFunction · 0.85
UnsignedAttributeMethod · 0.85

Calls 1

QueryUnsignedValueMethod · 0.80

Tested by

no test coverage detected