comparison OrthancServer/Sources/ServerJobs/DicomMoveScuJob.cpp @ 4205:d962a2996637

cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 17 Sep 2020 17:58:19 +0200
parents 05b8fd21089c
children 171af1567473
comparison
equal deleted inserted replaced
4204:318c16cfccab 4205:d962a2996637
76 { 76 {
77 private: 77 private:
78 DicomMoveScuJob& that_; 78 DicomMoveScuJob& that_;
79 79
80 public: 80 public:
81 Unserializer(DicomMoveScuJob& that) : 81 explicit Unserializer(DicomMoveScuJob& that) :
82 that_(that) 82 that_(that)
83 { 83 {
84 } 84 }
85 85
86 virtual ICommand* Unserialize(const Json::Value& source) const 86 virtual ICommand* Unserialize(const Json::Value& source) const ORTHANC_OVERRIDE
87 { 87 {
88 DicomMap findAnswer; 88 DicomMap findAnswer;
89 findAnswer.Unserialize(source); 89 findAnswer.Unserialize(source);
90 return new Command(that_, findAnswer); 90 return new Command(that_, findAnswer);
91 } 91 }