comparison OrthancFramework/Sources/JobsEngine/SetOfInstancesJob.cpp @ 4202:2007ab69ac16

moving ORTHANC_FORCE_INLINE and ORTHANC_OVERRIDE from Enumerations.h to Compatibility.h
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 17 Sep 2020 08:35:11 +0200
parents bf7b9edf6b81
children 50b0c69b653a
comparison
equal deleted inserted replaced
4201:2d5209153b32 4202:2007ab69ac16
73 { 73 {
74 private: 74 private:
75 SetOfInstancesJob& that_; 75 SetOfInstancesJob& that_;
76 76
77 public: 77 public:
78 TrailingStepCommand(SetOfInstancesJob& that) : 78 explicit TrailingStepCommand(SetOfInstancesJob& that) :
79 that_(that) 79 that_(that)
80 { 80 {
81 } 81 }
82 82
83 virtual bool Execute(const std::string& jobId) ORTHANC_OVERRIDE 83 virtual bool Execute(const std::string& jobId) ORTHANC_OVERRIDE
97 { 97 {
98 private: 98 private:
99 SetOfInstancesJob& that_; 99 SetOfInstancesJob& that_;
100 100
101 public: 101 public:
102 InstanceUnserializer(SetOfInstancesJob& that) : 102 explicit InstanceUnserializer(SetOfInstancesJob& that) :
103 that_(that) 103 that_(that)
104 { 104 {
105 } 105 }
106 106
107 virtual ICommand* Unserialize(const Json::Value& source) const 107 virtual ICommand* Unserialize(const Json::Value& source) const