void TagTree::digest64u(XMP_Uns64 expected, LFA_FileRef file,const std::string key /*=""*/, bool BigEndian /*=false*/, bool hexDisplay /*=false*/) { XMP_Uns64 tmp=digest64u( file,"",BigEndian, hexDisplay ); if (expected != tmp ) if (hexDisplay) throw DumpFileException("'%s' was 0x%.16X, expected: 0x%.16X",key.c_str(),tmp,expected); else throw DumpFileException("'%s' was %d, expected: %d",key.c_str(),tmp,expected); }
void TagTree::digest64u(XMP_Uns64* returnValue, LFA_FileRef file,const std::string key /*=""*/, bool BigEndian /*=false*/, bool hexDisplay /*=false*/) { *returnValue = digest64u( file, key,BigEndian, hexDisplay ); }