comparison Core/Enumerations.h @ 232:5368bbe813cf

refactoring of attachments
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 30 Nov 2012 14:22:27 +0100
parents e7432706b354
children c11273198cef
comparison
equal deleted inserted replaced
231:8098448bd827 232:5368bbe813cf
62 PixelFormat_RGB, 62 PixelFormat_RGB,
63 PixelFormat_Grayscale8, 63 PixelFormat_Grayscale8,
64 PixelFormat_Grayscale16 64 PixelFormat_Grayscale16
65 }; 65 };
66 66
67
68 /**
69 * WARNING: Do not change the explicit values in the enumerations
70 * below this point. This would result in incompatible databases
71 * between versions of Orthanc!
72 **/
73
67 enum CompressionType 74 enum CompressionType
68 { 75 {
69 CompressionType_None = 1, 76 CompressionType_None = 1,
70 CompressionType_Zlib = 2 77 CompressionType_Zlib = 2
71 }; 78 };
79
80 enum FileType
81 {
82 FileType_Dicom = 1,
83 FileType_Json = 2
84 };
72 } 85 }