comparison OrthancServer/DicomModification.cpp @ 787:ac18946afa74

refactoring of anonymization/modification
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 05 May 2014 15:52:14 +0200
parents b6d6b65142e8
children 7ebe4bf87196
comparison
equal deleted inserted replaced
786:b6d6b65142e8 787:ac18946afa74
85 { 85 {
86 removePrivateTags_ = false; 86 removePrivateTags_ = false;
87 level_ = DicomRootLevel_Instance; 87 level_ = DicomRootLevel_Instance;
88 } 88 }
89 89
90 void DicomModification::Reset(const DicomTag& tag) 90 void DicomModification::Keep(const DicomTag& tag)
91 { 91 {
92 removals_.erase(tag); 92 removals_.erase(tag);
93 replacements_.erase(tag); 93 replacements_.erase(tag);
94 } 94 }
95 95