comparison OrthancServer/Plugins/Engine/PluginsEnumerations.cpp @ 4597:b7fe3494a53c

added missing enum translation
author Alain Mazy <am@osimis.io>
date Wed, 17 Mar 2021 15:48:31 +0100
parents d9473bd5ed43
children f0038043fb97 7053502fbf97
comparison
equal deleted inserted replaced
4596:2b64cc3cea99 4597:b7fe3494a53c
226 return OrthancPluginContentType_Dicom; 226 return OrthancPluginContentType_Dicom;
227 227
228 case FileContentType_DicomAsJson: 228 case FileContentType_DicomAsJson:
229 return OrthancPluginContentType_DicomAsJson; 229 return OrthancPluginContentType_DicomAsJson;
230 230
231 case FileContentType_DicomUntilPixelData:
232 return OrthancPluginContentType_DicomUntilPixelData;
233
231 default: 234 default:
232 return OrthancPluginContentType_Unknown; 235 return OrthancPluginContentType_Unknown;
233 } 236 }
234 } 237 }
235 238
241 case OrthancPluginContentType_Dicom: 244 case OrthancPluginContentType_Dicom:
242 return FileContentType_Dicom; 245 return FileContentType_Dicom;
243 246
244 case OrthancPluginContentType_DicomAsJson: 247 case OrthancPluginContentType_DicomAsJson:
245 return FileContentType_DicomAsJson; 248 return FileContentType_DicomAsJson;
249
250 case OrthancPluginContentType_DicomUntilPixelData:
251 return FileContentType_DicomUntilPixelData;
246 252
247 default: 253 default:
248 return FileContentType_Unknown; 254 return FileContentType_Unknown;
249 } 255 }
250 } 256 }