comparison OrthancServer/Sources/OrthancFindRequestHandler.cpp @ 4055:9214e3a7b0a2 framework

moving FromDcmtkTests.cpp from OrthancServer to OrthancFramework
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 11 Jun 2020 12:52:09 +0200
parents 05b8fd21089c
children c02a2d9efbc2
comparison
equal deleted inserted replaced
4054:9c37896a4457 4055:9214e3a7b0a2
391 Json::Value content = Json::arrayValue; 391 Json::Value content = Json::arrayValue;
392 392
393 for (Json::Value::ArrayIndex i = 0; i < source["Value"].size(); i++) 393 for (Json::Value::ArrayIndex i = 0; i < source["Value"].size(); i++)
394 { 394 {
395 Json::Value item; 395 Json::Value item;
396 ServerToolbox::SimplifyTags(item, source["Value"][i], DicomToJsonFormat_Short); 396 Toolbox::SimplifyDicomAsJson(item, source["Value"][i], DicomToJsonFormat_Short);
397 content.append(item); 397 content.append(item);
398 } 398 }
399 399
400 if (tag->IsPrivate()) 400 if (tag->IsPrivate())
401 { 401 {