comparison OrthancServer/ServerEnumerations.cpp @ 407:2d269089078f

reintegration of lua scripting into mainline
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 02 May 2013 16:49:28 +0200
parents 4d5f0857ec9c 941ea46e9e26
children ccf3a0a43dac
comparison
equal deleted inserted replaced
406:fb1d988a978b 407:2d269089078f
110 return "AlreadyStored"; 110 return "AlreadyStored";
111 111
112 case StoreStatus_Failure: 112 case StoreStatus_Failure:
113 return "Failure"; 113 return "Failure";
114 114
115 case StoreStatus_FilteredOut:
116 return "FilteredOut";
117
115 default: 118 default:
116 throw OrthancException(ErrorCode_ParameterOutOfRange); 119 throw OrthancException(ErrorCode_ParameterOutOfRange);
117 } 120 }
118 } 121 }
119 122