comparison OrthancServer/ServerToolbox.h @ 2209:e3fd5bc429a2

URI to reconstruct the main DICOM tags, the JSON summary and the metadata
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 09 Dec 2016 17:20:21 +0100
parents 1cf093cbdad8
children a3a65de1840f
comparison
equal deleted inserted replaced
2208:90ea60bee5ff 2209:e3fd5bc429a2
30 **/ 30 **/
31 31
32 32
33 #pragma once 33 #pragma once
34 34
35 #include "../Core/DicomFormat/DicomMap.h" 35 #include "ServerContext.h"
36 #include "IDatabaseWrapper.h"
37 36
38 #include <json/json.h> 37 #include <json/json.h>
39 38
40 namespace Orthanc 39 namespace Orthanc
41 { 40 {
67 66
68 bool IsIdentifier(const DicomTag& tag, 67 bool IsIdentifier(const DicomTag& tag,
69 ResourceType level); 68 ResourceType level);
70 69
71 std::string NormalizeIdentifier(const std::string& value); 70 std::string NormalizeIdentifier(const std::string& value);
71
72 void ReconstructResource(ServerContext& context,
73 const std::string& resource);
72 } 74 }
73 } 75 }