MCPcopy Create free account
hub / github.com/BehaviorTree/BehaviorTree.CPP / QueryUnsignedAttribute

Function QueryUnsignedAttribute

3rdparty/tinyxml2/tinyxml2.h:1354–1360  ·  view source on GitHub ↗

See QueryIntAttribute()

Source from the content-addressed store, hash-verified

1352
1353 /// See QueryIntAttribute()
1354 XMLError QueryUnsignedAttribute( const char* name, unsigned int* value ) const {
1355 const XMLAttribute* a = FindAttribute( name );
1356 if ( !a ) {
1357 return XML_NO_ATTRIBUTE;
1358 }
1359 return a->QueryUnsignedValue( value );
1360 }
1361
1362 /// See QueryIntAttribute()
1363 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