comparison OrthancServer/DicomProtocol/IMoveRequestHandler.h @ 1573:3309878b3e16

more information about the origin of requests submitted to the DICOM handlers
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 25 Aug 2015 13:05:22 +0200
parents 6e7e5ed91c2d
children 164d78911382
comparison
equal deleted inserted replaced
1572:904096e7367e 1573:3309878b3e16
66 virtual ~IMoveRequestHandler() 66 virtual ~IMoveRequestHandler()
67 { 67 {
68 } 68 }
69 69
70 virtual IMoveRequestIterator* Handle(const std::string& target, 70 virtual IMoveRequestIterator* Handle(const std::string& target,
71 const DicomMap& input) = 0; 71 const DicomMap& input,
72 const std::string& remoteIp,
73 const std::string& remoteAet) = 0;
72 }; 74 };
73 75
74 } 76 }