comparison OrthancServer/ServerEnumerations.cpp @ 397:941ea46e9e26 lua-scripting

lua filter of new instances
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 02 May 2013 16:34:00 +0200
parents 1082e8121d10
children 2d269089078f
comparison
equal deleted inserted replaced
394:9784f19f7e1b 397:941ea46e9e26
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