comparison OrthancServer/ServerEnumerations.cpp @ 1189:6b9b02a16e99 db-changes

NewChildInstance change type
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 25 Sep 2014 17:02:28 +0200
parents 5b2d8c280ac2
children 6e7e5ed91c2d
comparison
equal deleted inserted replaced
1187:49edef619f1f 1189:6b9b02a16e99
232 return "StableSeries"; 232 return "StableSeries";
233 233
234 case ChangeType_Deleted: 234 case ChangeType_Deleted:
235 return "Deleted"; 235 return "Deleted";
236 236
237 case ChangeType_NewChildInstance:
238 return "NewChildInstance";
239
237 default: 240 default:
238 throw OrthancException(ErrorCode_ParameterOutOfRange); 241 throw OrthancException(ErrorCode_ParameterOutOfRange);
239 } 242 }
240 } 243 }
241 244