Mercurial > hg > orthanc
comparison OrthancServer/ServerEnumerations.cpp @ 511:3b735fdf320b
monitoring of stable patients/studies/series
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 16 Aug 2013 15:39:53 +0200 |
parents | beca6747945e |
children | 1b2cdc855bd3 |
comparison
equal
deleted
inserted
replaced
509:e7841864c97c | 511:3b735fdf320b |
---|---|
203 return "AnonymizedPatient"; | 203 return "AnonymizedPatient"; |
204 | 204 |
205 case ChangeType_ModifiedPatient: | 205 case ChangeType_ModifiedPatient: |
206 return "ModifiedPatient"; | 206 return "ModifiedPatient"; |
207 | 207 |
208 case ChangeType_StablePatient: | |
209 return "StablePatient"; | |
210 | |
211 case ChangeType_StableStudy: | |
212 return "StableStudy"; | |
213 | |
214 case ChangeType_StableSeries: | |
215 return "StableSeries"; | |
216 | |
208 default: | 217 default: |
209 throw OrthancException(ErrorCode_ParameterOutOfRange); | 218 throw OrthancException(ErrorCode_ParameterOutOfRange); |
210 } | 219 } |
211 } | 220 } |
212 | 221 |