| 1172 | // ----------------- |
| 1173 | |
| 1174 | void |
| 1175 | XMPMeta::SetProperty_Float ( XMP_StringPtr schemaNS, |
| 1176 | XMP_StringPtr propName, |
| 1177 | double propValue, |
| 1178 | XMP_OptionBits options ) |
| 1179 | { |
| 1180 | XMP_Assert ( (schemaNS != 0) && (propName != 0) ); // Enforced by wrapper. |
| 1181 | |
| 1182 | XMP_StringPtr valueStr; |
| 1183 | XMP_StringLen valueLen; |
| 1184 | |
| 1185 | XMPUtils::ConvertFromFloat ( propValue, "", &valueStr, &valueLen ); |
| 1186 | SetProperty ( schemaNS, propName, valueStr, options ); |
| 1187 | |
| 1188 | } // SetProperty_Float |
| 1189 | |
| 1190 | |
| 1191 | // ------------------------------------------------------------------------------------------------- |
no outgoing calls
no test coverage detected