comparison OrthancServer/DicomModification.cpp @ 789:55dae8c5a6ab

refactoring
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 05 May 2014 18:43:34 +0200
parents 7ebe4bf87196
children 331eaf9d9d69
comparison
equal deleted inserted replaced
788:7ebe4bf87196 789:55dae8c5a6ab
267 267
268 // (3) Replace the tags 268 // (3) Replace the tags
269 for (Replacements::const_iterator it = replacements_.begin(); 269 for (Replacements::const_iterator it = replacements_.begin();
270 it != replacements_.end(); ++it) 270 it != replacements_.end(); ++it)
271 { 271 {
272 toModify.Replace(it->first, it->second, FromDcmtkBridge::ReplaceMode_InsertIfAbsent); 272 toModify.Replace(it->first, it->second, DicomReplaceMode_InsertIfAbsent);
273 } 273 }
274 274
275 // (4) Update the DICOM identifiers 275 // (4) Update the DICOM identifiers
276 if (level_ <= ResourceType_Study) 276 if (level_ <= ResourceType_Study)
277 { 277 {