comparison OrthancServer/ServerContext.cpp @ 1860:c7d70f659190

DicomToJsonFormat_Simple -> DicomToJsonFormat_Human
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 02 Dec 2015 11:26:52 +0100
parents 4e7c318a3f69
children b1291df2f780
comparison
equal deleted inserted replaced
1859:4e7c318a3f69 1860:c7d70f659190
187 187
188 DicomInstanceHasher hasher(dicom.GetSummary()); 188 DicomInstanceHasher hasher(dicom.GetSummary());
189 resultPublicId = hasher.HashInstance(); 189 resultPublicId = hasher.HashInstance();
190 190
191 Json::Value simplifiedTags; 191 Json::Value simplifiedTags;
192 Toolbox::SimplifyTags(simplifiedTags, dicom.GetJson(), DicomToJsonFormat_Simple); 192 Toolbox::SimplifyTags(simplifiedTags, dicom.GetJson(), DicomToJsonFormat_Human);
193 193
194 // Test if the instance must be filtered out 194 // Test if the instance must be filtered out
195 bool accepted = true; 195 bool accepted = true;
196 196
197 { 197 {