comparison Core/JobsEngine/SetOfCommandsJob.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
comparison
equal deleted inserted replaced
3673:3e68c3b4e3df 3674:9201a7858cce
108 return permissive_; 108 return permissive_;
109 } 109 }
110 110
111 void SetPermissive(bool permissive); 111 void SetPermissive(bool permissive);
112 112
113 virtual void Reset(); 113 virtual void Reset() ORTHANC_OVERRIDE;
114 114
115 virtual void Start() 115 virtual void Start() ORTHANC_OVERRIDE
116 { 116 {
117 started_ = true; 117 started_ = true;
118 } 118 }
119 119
120 virtual float GetProgress(); 120 virtual float GetProgress() ORTHANC_OVERRIDE;
121 121
122 bool IsStarted() const 122 bool IsStarted() const
123 { 123 {
124 return started_; 124 return started_;
125 } 125 }
126 126
127 const ICommand& GetCommand(size_t index) const; 127 const ICommand& GetCommand(size_t index) const;
128 128
129 virtual JobStepResult Step(const std::string& jobId) ORTHANC_OVERRIDE; 129 virtual JobStepResult Step(const std::string& jobId) ORTHANC_OVERRIDE;
130 130
131 virtual void GetPublicContent(Json::Value& value); 131 virtual void GetPublicContent(Json::Value& value) ORTHANC_OVERRIDE;
132 132
133 virtual bool Serialize(Json::Value& target); 133 virtual bool Serialize(Json::Value& target) ORTHANC_OVERRIDE;
134 134
135 virtual bool GetOutput(std::string& output, 135 virtual bool GetOutput(std::string& output,
136 MimeType& mime, 136 MimeType& mime,
137 const std::string& key) 137 const std::string& key) ORTHANC_OVERRIDE
138 { 138 {
139 return false; 139 return false;
140 } 140 }
141 }; 141 };
142 } 142 }