Mercurial > hg > orthanc
comparison OrthancServer/ServerJobs/DicomMoveScuJob.h @ 3303:a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Sun, 24 Feb 2019 10:03:02 +0100 |
parents | beeeb6096f27 |
children | 94f4a18a79cc |
comparison
equal
deleted
inserted
replaced
3302:8ed445e94486 | 3303:a215182a0c2f |
---|---|
51 ServerContext& context_; | 51 ServerContext& context_; |
52 std::string localAet_; | 52 std::string localAet_; |
53 std::string targetAet_; | 53 std::string targetAet_; |
54 RemoteModalityParameters remote_; | 54 RemoteModalityParameters remote_; |
55 std::auto_ptr<DicomUserConnection> connection_; | 55 std::auto_ptr<DicomUserConnection> connection_; |
56 Json::Value query_; | |
56 | 57 |
57 void Retrieve(const DicomMap& findAnswer); | 58 void Retrieve(const DicomMap& findAnswer); |
58 | 59 |
59 public: | 60 public: |
60 DicomMoveScuJob(ServerContext& context) : | 61 DicomMoveScuJob(ServerContext& context) : |
61 context_(context) | 62 context_(context), |
63 query_(Json::arrayValue) | |
62 { | 64 { |
63 } | 65 } |
64 | 66 |
65 DicomMoveScuJob(ServerContext& context, | 67 DicomMoveScuJob(ServerContext& context, |
66 const Json::Value& serialized); | 68 const Json::Value& serialized); |