comparison OrthancServer/ServerJobs/DicomModalityStoreJob.cpp @ 2842:ff0ed5ea9e4e

trailing step in SetOfInstancesJob
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 26 Sep 2018 15:55:42 +0200
parents ea7aea6f6a95
children 8b00e4cb4a6b
comparison
equal deleted inserted replaced
2841:bf019ee38498 2842:ff0ed5ea9e4e
83 83
84 return true; 84 return true;
85 } 85 }
86 86
87 87
88 bool DicomModalityStoreJob::HandleTrailingStep()
89 {
90 throw OrthancException(ErrorCode_InternalError);
91 }
92
93
88 DicomModalityStoreJob::DicomModalityStoreJob(ServerContext& context) : 94 DicomModalityStoreJob::DicomModalityStoreJob(ServerContext& context) :
95 SetOfInstancesJob(false /* no trailing step */),
89 context_(context), 96 context_(context),
90 localAet_("ORTHANC"), 97 localAet_("ORTHANC"),
91 moveOriginatorId_(0) // By default, not a C-MOVE 98 moveOriginatorId_(0) // By default, not a C-MOVE
92 { 99 {
93 } 100 }