MCPcopy Create free account
hub / github.com/MaxBelkov/visualsyslog / QueryUnsignedAttribute

Function QueryUnsignedAttribute

sourcecommon/tinyxml2.h:1233–1239  ·  view source on GitHub ↗

See QueryIntAttribute()

Source from the content-addressed store, hash-verified

1231 }
1232 /// See QueryIntAttribute()
1233 XMLError QueryUnsignedAttribute( const char* name, unsigned int* value ) const {
1234 const XMLAttribute* a = FindAttribute( name );
1235 if ( !a ) {
1236 return XML_NO_ATTRIBUTE;
1237 }
1238 return a->QueryUnsignedValue( value );
1239 }
1240 /// See QueryIntAttribute()
1241 XMLError QueryBoolAttribute( const char* name, bool* value ) const {
1242 const XMLAttribute* a = FindAttribute( name );

Callers 2

UnsignedAttributeFunction · 0.85
QueryAttributeFunction · 0.85

Calls 1

QueryUnsignedValueMethod · 0.80

Tested by

no test coverage detected