comparison Core/JobsEngine/Operations/SequenceOfOperationsJob.h @ 3674:9201a7858cce storage-commitment

fix warnings with recent wasm
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 17 Feb 2020 10:15:10 +0100
parents 2d90dd30858c
children 6498739a3c3c
comparison
equal deleted inserted replaced
3673:3e68c3b4e3df 3674:9201a7858cce
124 124
125 void Connect(size_t input, 125 void Connect(size_t input,
126 size_t output); 126 size_t output);
127 }; 127 };
128 128
129 virtual void Start() 129 virtual void Start() ORTHANC_OVERRIDE
130 { 130 {
131 } 131 }
132 132
133 virtual JobStepResult Step(const std::string& jobId) ORTHANC_OVERRIDE; 133 virtual JobStepResult Step(const std::string& jobId) ORTHANC_OVERRIDE;
134 134
135 virtual void Reset(); 135 virtual void Reset() ORTHANC_OVERRIDE;
136 136
137 virtual void Stop(JobStopReason reason); 137 virtual void Stop(JobStopReason reason) ORTHANC_OVERRIDE;
138 138
139 virtual float GetProgress(); 139 virtual float GetProgress() ORTHANC_OVERRIDE;
140 140
141 virtual void GetJobType(std::string& target) 141 virtual void GetJobType(std::string& target) ORTHANC_OVERRIDE
142 { 142 {
143 target = "SequenceOfOperations"; 143 target = "SequenceOfOperations";
144 } 144 }
145 145
146 virtual void GetPublicContent(Json::Value& value); 146 virtual void GetPublicContent(Json::Value& value) ORTHANC_OVERRIDE;
147 147
148 virtual bool Serialize(Json::Value& value); 148 virtual bool Serialize(Json::Value& value) ORTHANC_OVERRIDE;
149 149
150 virtual bool GetOutput(std::string& output, 150 virtual bool GetOutput(std::string& output,
151 MimeType& mime, 151 MimeType& mime,
152 const std::string& key) 152 const std::string& key) ORTHANC_OVERRIDE
153 { 153 {
154 return false; 154 return false;
155 } 155 }
156 156
157 void AwakeTrailingSleep() 157 void AwakeTrailingSleep()