comparison Orthanc/Core/Enumerations.h @ 131:f6c88aa6efe0

sync
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 31 May 2016 12:11:58 +0200
parents e8cfda4c8a2f
children 3251ec958a29
comparison
equal deleted inserted replaced
128:e8cfda4c8a2f 131:f6c88aa6efe0
137 ErrorCode_DatabaseBackendAlreadyRegistered = 2037 /*!< Another plugin has already registered a custom database back-end */, 137 ErrorCode_DatabaseBackendAlreadyRegistered = 2037 /*!< Another plugin has already registered a custom database back-end */,
138 ErrorCode_DatabaseNotInitialized = 2038 /*!< Plugin trying to call the database during its initialization */, 138 ErrorCode_DatabaseNotInitialized = 2038 /*!< Plugin trying to call the database during its initialization */,
139 ErrorCode_SslDisabled = 2039 /*!< Orthanc has been built without SSL support */, 139 ErrorCode_SslDisabled = 2039 /*!< Orthanc has been built without SSL support */,
140 ErrorCode_CannotOrderSlices = 2040 /*!< Unable to order the slices of the series */, 140 ErrorCode_CannotOrderSlices = 2040 /*!< Unable to order the slices of the series */,
141 ErrorCode_NoWorklistHandler = 2041 /*!< No request handler factory for DICOM C-Find Modality SCP */, 141 ErrorCode_NoWorklistHandler = 2041 /*!< No request handler factory for DICOM C-Find Modality SCP */,
142 ErrorCode_AlreadyExistingTag = 2042 /*!< Cannot override the value of a tag that already exists */,
142 ErrorCode_START_PLUGINS = 1000000 143 ErrorCode_START_PLUGINS = 1000000
143 }; 144 };
144 145
145 enum LogLevel 146 enum LogLevel
146 { 147 {
184 185
185 /** 186 /**
186 * {summary}{Graylevel, signed 16bpp image.} 187 * {summary}{Graylevel, signed 16bpp image.}
187 * {description}{The image is graylevel. Each pixel is signed and stored in two bytes.} 188 * {description}{The image is graylevel. Each pixel is signed and stored in two bytes.}
188 **/ 189 **/
189 PixelFormat_SignedGrayscale16 = 5 190 PixelFormat_SignedGrayscale16 = 5,
191
192 /**
193 * {summary}{Graylevel, floating-point image.}
194 * {description}{The image is graylevel. Each pixel is floating-point and stored in 4 bytes.}
195 **/
196 PixelFormat_Float32 = 6
190 }; 197 };
191 198
192 199
193 /** 200 /**
194 * {summary}{The extraction mode specifies the way the values of the pixels are scaled when downloading a 2D image.} 201 * {summary}{The extraction mode specifies the way the values of the pixels are scaled when downloading a 2D image.}