MCPcopy Create free account
hub / github.com/Exiv2/exiv2 / SetProperty_Int64

Method SetProperty_Int64

xmpsdk/src/XMPMeta-GetSet.cpp:1153–1167  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1151// -----------------
1152
1153void
1154XMPMeta::SetProperty_Int64 ( XMP_StringPtr schemaNS,
1155 XMP_StringPtr propName,
1156 XMP_Int64 propValue,
1157 XMP_OptionBits options )
1158{
1159 XMP_Assert ( (schemaNS != 0) && (propName != 0) ); // Enforced by wrapper.
1160
1161 XMP_StringPtr valueStr;
1162 XMP_StringLen valueLen;
1163
1164 XMPUtils::ConvertFromInt64 ( propValue, "", &valueStr, &valueLen );
1165 SetProperty ( schemaNS, propName, valueStr, options );
1166
1167} // SetProperty_Int64
1168
1169
1170// -------------------------------------------------------------------------------------------------

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected