MCPcopy Create free account
hub / github.com/MediaArea/MediaInfoLib / QueryInt64Attribute

Function QueryInt64Attribute

Source/ThirdParty/tinyxml2/tinyxml2.h:1343–1349  ·  view source on GitHub ↗

See QueryIntAttribute()

Source from the content-addressed store, hash-verified

1341
1342 /// See QueryIntAttribute()
1343 XMLError QueryInt64Attribute(const char* name, int64_t* value) const {
1344 const XMLAttribute* a = FindAttribute(name);
1345 if (!a) {
1346 return XML_NO_ATTRIBUTE;
1347 }
1348 return a->QueryInt64Value(value);
1349 }
1350
1351 /// See QueryIntAttribute()
1352 XMLError QueryBoolAttribute( const char* name, bool* value ) const {

Callers 2

QueryAttributeFunction · 0.85
Int64AttributeMethod · 0.85

Calls 2

FindAttributeFunction · 0.85
QueryInt64ValueMethod · 0.80

Tested by

no test coverage detected