comparison OrthancServer/ServerToolbox.h @ 730:309e686b41e7

better logging about nonexistent tags
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 25 Feb 2014 14:51:19 +0100
parents 2d0a347e8cfc
children 6e7e5ed91c2d
comparison
equal deleted inserted replaced
729:948720c72586 730:309e686b41e7
30 **/ 30 **/
31 31
32 32
33 #pragma once 33 #pragma once
34 34
35 #include "../Core/DicomFormat/DicomMap.h"
36
35 #include <json/json.h> 37 #include <json/json.h>
36 38
37 namespace Orthanc 39 namespace Orthanc
38 { 40 {
39 void SimplifyTags(Json::Value& target, 41 void SimplifyTags(Json::Value& target,
40 const Json::Value& source); 42 const Json::Value& source);
43
44 void LogMissingRequiredTag(const DicomMap& summary);
41 } 45 }