comparison OrthancServer/DicomProtocol/IStoreRequestHandler.h @ 1285:5730f374e4e6

Access to called AET and remote AET from Lua scripts
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 03 Feb 2015 15:00:42 +0100
parents 2d0a347e8cfc
children 6e7e5ed91c2d
comparison
equal deleted inserted replaced
1284:21ea32170764 1285:5730f374e4e6
48 } 48 }
49 49
50 virtual void Handle(const std::string& dicomFile, 50 virtual void Handle(const std::string& dicomFile,
51 const DicomMap& dicomSummary, 51 const DicomMap& dicomSummary,
52 const Json::Value& dicomJson, 52 const Json::Value& dicomJson,
53 const std::string& distantAet) = 0; 53 const std::string& remoteAet,
54 const std::string& calledAet) = 0;
54 }; 55 };
55 } 56 }