comparison OrthancFramework/Sources/FileStorage/FilesystemStorage.cpp @ 4512:cff7fdfc83a4

added FileContentType_DicomUntilPixelData
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 12 Feb 2021 11:33:16 +0100
parents fa2311f94d9f
children f5cb0c0ffbed
comparison
equal deleted inserted replaced
4511:1ec156a0da38 4512:cff7fdfc83a4
104 case FileContentType_Dicom: 104 case FileContentType_Dicom:
105 return "DICOM"; 105 return "DICOM";
106 106
107 case FileContentType_DicomAsJson: 107 case FileContentType_DicomAsJson:
108 return "JSON summary of DICOM"; 108 return "JSON summary of DICOM";
109
110 case FileContentType_DicomUntilPixelData:
111 return "DICOM until pixel data";
109 112
110 default: 113 default:
111 return "User-defined"; 114 return "User-defined";
112 } 115 }
113 } 116 }