comparison Plugins/Engine/PluginsEnumerations.cpp @ 1671:2f2e2ec17bc4 db-changes

sample database plugin
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 01 Oct 2015 17:44:43 +0200
parents a412ad57f0f9
children 5e99a70b0635
comparison
equal deleted inserted replaced
1670:16955f8fec4d 1671:2f2e2ec17bc4
208 return FileContentType_Unknown; 208 return FileContentType_Unknown;
209 } 209 }
210 } 210 }
211 211
212 212
213 213 #if !defined(ORTHANC_ENABLE_DCMTK) || ORTHANC_ENABLE_DCMTK != 0
214 DcmEVR Convert(OrthancPluginValueRepresentation vr) 214 DcmEVR Convert(OrthancPluginValueRepresentation vr)
215 { 215 {
216 switch (vr) 216 switch (vr)
217 { 217 {
218 case OrthancPluginValueRepresentation_AE: 218 case OrthancPluginValueRepresentation_AE:
298 298
299 default: 299 default:
300 throw OrthancException(ErrorCode_ParameterOutOfRange); 300 throw OrthancException(ErrorCode_ParameterOutOfRange);
301 } 301 }
302 } 302 }
303 #endif
303 } 304 }
304 } 305 }