comparison OrthancServer/ServerJobs/DicomMoveScuJob.cpp @ 3763:5ff5d5a0fd28

adding missing ORTHANC_OVERRIDE
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 16 Mar 2020 14:12:20 +0100
parents 56f2397f027a
children 138d0dde41b5
comparison
equal deleted inserted replaced
3762:1a346a4dc1b4 3763:5ff5d5a0fd28
61 { 61 {
62 that_.Retrieve(*findAnswer_); 62 that_.Retrieve(*findAnswer_);
63 return true; 63 return true;
64 } 64 }
65 65
66 virtual void Serialize(Json::Value& target) const 66 virtual void Serialize(Json::Value& target) const ORTHANC_OVERRIDE
67 { 67 {
68 findAnswer_->Serialize(target); 68 findAnswer_->Serialize(target);
69 } 69 }
70 }; 70 };
71 71