MCPcopy Create free account
hub / github.com/bulletphysics/bullet3 / QueryUnsignedAttribute

Function QueryUnsignedAttribute

examples/ThirdPartyLibs/tinyxml2/tinyxml2.h:1469–1477  ·  view source on GitHub ↗

See QueryIntAttribute()

Source from the content-addressed store, hash-verified

1467
1468 /// See QueryIntAttribute()
1469 XMLError QueryUnsignedAttribute(const char* name, unsigned int* value) const
1470 {
1471 const XMLAttribute* a = FindAttribute(name);
1472 if (!a)
1473 {
1474 return XML_NO_ATTRIBUTE;
1475 }
1476 return a->QueryUnsignedValue(value);
1477 }
1478
1479 /// See QueryIntAttribute()
1480 XMLError QueryInt64Attribute(const char* name, xml_Int64a_t* value) const

Callers 2

QueryAttributeFunction · 0.85
UnsignedAttributeMethod · 0.85

Calls 2

FindAttributeFunction · 0.85
QueryUnsignedValueMethod · 0.80

Tested by

no test coverage detected