comparison OrthancServer/ServerIndex.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 7cfc2e0383b3
children a3a65de1840f
comparison
equal deleted inserted replaced
2208:90ea60bee5ff 2209:e3fd5bc429a2
45 namespace Orthanc 45 namespace Orthanc
46 { 46 {
47 class LookupResource; 47 class LookupResource;
48 class ServerContext; 48 class ServerContext;
49 class DicomInstanceToStore; 49 class DicomInstanceToStore;
50 class ParsedDicomFile;
50 51
51 class ServerIndex : public boost::noncopyable 52 class ServerIndex : public boost::noncopyable
52 { 53 {
53 public: 54 public:
54 typedef std::list<FileInfo> Attachments; 55 typedef std::list<FileInfo> Attachments;
271 const ::Orthanc::LookupResource& lookup); 272 const ::Orthanc::LookupResource& lookup);
272 273
273 bool LookupParent(std::string& target, 274 bool LookupParent(std::string& target,
274 const std::string& publicId, 275 const std::string& publicId,
275 ResourceType parentType); 276 ResourceType parentType);
277
278 void ReconstructInstance(ParsedDicomFile& dicom);
276 }; 279 };
277 } 280 }