diff 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
line wrap: on
line diff
--- a/Core/JobsEngine/SetOfCommandsJob.h	Fri Feb 14 17:55:53 2020 +0100
+++ b/Core/JobsEngine/SetOfCommandsJob.h	Mon Feb 17 10:15:10 2020 +0100
@@ -110,14 +110,14 @@
 
     void SetPermissive(bool permissive);
 
-    virtual void Reset();
+    virtual void Reset() ORTHANC_OVERRIDE;
     
-    virtual void Start()
+    virtual void Start() ORTHANC_OVERRIDE
     {
       started_ = true;
     }
     
-    virtual float GetProgress();
+    virtual float GetProgress() ORTHANC_OVERRIDE;
 
     bool IsStarted() const
     {
@@ -128,13 +128,13 @@
       
     virtual JobStepResult Step(const std::string& jobId) ORTHANC_OVERRIDE;
     
-    virtual void GetPublicContent(Json::Value& value);
+    virtual void GetPublicContent(Json::Value& value) ORTHANC_OVERRIDE;
     
-    virtual bool Serialize(Json::Value& target);
+    virtual bool Serialize(Json::Value& target) ORTHANC_OVERRIDE;
 
     virtual bool GetOutput(std::string& output,
                            MimeType& mime,
-                           const std::string& key)
+                           const std::string& key) ORTHANC_OVERRIDE
     {
       return false;
     }