comparison OrthancServer/ServerEnumerations.cpp @ 1177:5b2d8c280ac2 db-changes

Plugins can monitor changes through callbacks
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 24 Sep 2014 17:37:44 +0200
parents 3db41779d8f9
children 6b9b02a16e99
comparison
equal deleted inserted replaced
1176:f24e04838054 1177:5b2d8c280ac2
229 return "StableStudy"; 229 return "StableStudy";
230 230
231 case ChangeType_StableSeries: 231 case ChangeType_StableSeries:
232 return "StableSeries"; 232 return "StableSeries";
233 233
234 case ChangeType_Deleted:
235 return "Deleted";
236
234 default: 237 default:
235 throw OrthancException(ErrorCode_ParameterOutOfRange); 238 throw OrthancException(ErrorCode_ParameterOutOfRange);
236 } 239 }
237 } 240 }
238 241