comparison OrthancServer/ServerEnumerations.cpp @ 732:b79eda29896d

dcm4chee manufacturer
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 25 Feb 2014 15:39:13 +0100
parents dd1ce9a2844c
children a811bdf8b8eb
comparison
equal deleted inserted replaced
731:be0dadf5b3d4 732:b79eda29896d
280 case ModalityManufacturer_ClearCanvas: 280 case ModalityManufacturer_ClearCanvas:
281 return "ClearCanvas"; 281 return "ClearCanvas";
282 282
283 case ModalityManufacturer_MedInria: 283 case ModalityManufacturer_MedInria:
284 return "MedInria"; 284 return "MedInria";
285
286 case ModalityManufacturer_Dcm4Chee:
287 return "Dcm4Chee";
285 288
286 default: 289 default:
287 throw OrthancException(ErrorCode_ParameterOutOfRange); 290 throw OrthancException(ErrorCode_ParameterOutOfRange);
288 } 291 }
289 } 292 }
333 } 336 }
334 else if (manufacturer == "MedInria") 337 else if (manufacturer == "MedInria")
335 { 338 {
336 return ModalityManufacturer_MedInria; 339 return ModalityManufacturer_MedInria;
337 } 340 }
341 else if (manufacturer == "Dcm4Chee")
342 {
343 return ModalityManufacturer_Dcm4Chee;
344 }
338 else 345 else
339 { 346 {
340 throw OrthancException(ErrorCode_ParameterOutOfRange); 347 throw OrthancException(ErrorCode_ParameterOutOfRange);
341 } 348 }
342 } 349 }