comparison OrthancServer/ServerJobs/DicomModalityStoreJob.h @ 3763:5ff5d5a0fd28

adding missing ORTHANC_OVERRIDE
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 16 Mar 2020 14:12:20 +0100
parents 77183afbf55e
children 594263db316a
comparison
equal deleted inserted replaced
3762:1a346a4dc1b4 3763:5ff5d5a0fd28
60 void OpenConnection(); 60 void OpenConnection();
61 61
62 void ResetStorageCommitment(); 62 void ResetStorageCommitment();
63 63
64 protected: 64 protected:
65 virtual bool HandleInstance(const std::string& instance); 65 virtual bool HandleInstance(const std::string& instance) ORTHANC_OVERRIDE;
66 66
67 virtual bool HandleTrailingStep(); 67 virtual bool HandleTrailingStep() ORTHANC_OVERRIDE;
68 68
69 public: 69 public:
70 DicomModalityStoreJob(ServerContext& context); 70 DicomModalityStoreJob(ServerContext& context);
71 71
72 DicomModalityStoreJob(ServerContext& context, 72 DicomModalityStoreJob(ServerContext& context,
98 void SetMoveOriginator(const std::string& aet, 98 void SetMoveOriginator(const std::string& aet,
99 int id); 99 int id);
100 100
101 virtual void Stop(JobStopReason reason) ORTHANC_OVERRIDE; 101 virtual void Stop(JobStopReason reason) ORTHANC_OVERRIDE;
102 102
103 virtual void GetJobType(std::string& target) 103 virtual void GetJobType(std::string& target) ORTHANC_OVERRIDE
104 { 104 {
105 target = "DicomModalityStore"; 105 target = "DicomModalityStore";
106 } 106 }
107 107
108 virtual void GetPublicContent(Json::Value& value); 108 virtual void GetPublicContent(Json::Value& value) ORTHANC_OVERRIDE;
109 109
110 virtual bool Serialize(Json::Value& target); 110 virtual bool Serialize(Json::Value& target) ORTHANC_OVERRIDE;
111 111
112 virtual void Reset() ORTHANC_OVERRIDE; 112 virtual void Reset() ORTHANC_OVERRIDE;
113 113
114 void EnableStorageCommitment(bool enabled); 114 void EnableStorageCommitment(bool enabled);
115 }; 115 };