diff OrthancServer/Sources/ServerJobs/MergeStudyJob.h @ 4205:d962a2996637

cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 17 Sep 2020 17:58:19 +0200
parents 05b8fd21089c
children d9473bd5ed43
line wrap: on
line diff
--- a/OrthancServer/Sources/ServerJobs/MergeStudyJob.h	Thu Sep 17 16:18:01 2020 +0200
+++ b/OrthancServer/Sources/ServerJobs/MergeStudyJob.h	Thu Sep 17 17:58:19 2020 +0200
@@ -60,7 +60,7 @@
     void AddSourceStudyInternal(const std::string& study);
 
   protected:
-    virtual bool HandleInstance(const std::string& instance);
+    virtual bool HandleInstance(const std::string& instance) ORTHANC_OVERRIDE;
 
   public:
     MergeStudyJob(ServerContext& context,
@@ -89,17 +89,17 @@
       return origin_;
     }
 
-    virtual void Stop(JobStopReason reason)
+    virtual void Stop(JobStopReason reason) ORTHANC_OVERRIDE
     {
     }
 
-    virtual void GetJobType(std::string& target)
+    virtual void GetJobType(std::string& target) ORTHANC_OVERRIDE
     {
       target = "MergeStudy";
     }
 
-    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;
   };
 }