Mercurial > hg > orthanc
comparison OrthancServer/DatabaseWrapper.h @ 1713:4db9200c7f46 db-changes
SetIdentifierTag
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 16 Oct 2015 18:17:22 +0200 |
parents | 5ebd6cbb3da8 |
children | 2b812969e136 |
comparison
equal
deleted
inserted
replaced
1712:a7745f3a2cc4 | 1713:4db9200c7f46 |
---|---|
176 const std::string& value) | 176 const std::string& value) |
177 { | 177 { |
178 base_.SetMainDicomTag(id, tag, value); | 178 base_.SetMainDicomTag(id, tag, value); |
179 } | 179 } |
180 | 180 |
181 virtual void SetIdentifierTag(int64_t id, | |
182 const DicomTag& tag, | |
183 const std::string& value) | |
184 { | |
185 base_.SetIdentifierTag(id, tag, value); | |
186 } | |
187 | |
181 virtual void GetMainDicomTags(DicomMap& map, | 188 virtual void GetMainDicomTags(DicomMap& map, |
182 int64_t id) | 189 int64_t id) |
183 { | 190 { |
184 base_.GetMainDicomTags(map, id); | 191 base_.GetMainDicomTags(map, id); |
185 } | 192 } |