Mercurial > hg > orthanc
comparison Plugins/Engine/PluginsJob.h @ 3763:5ff5d5a0fd28
adding missing ORTHANC_OVERRIDE
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 16 Mar 2020 14:12:20 +0100 |
parents | 2d90dd30858c |
children |
comparison
equal
deleted
inserted
replaced
3762:1a346a4dc1b4 | 3763:5ff5d5a0fd28 |
---|---|
49 public: | 49 public: |
50 PluginsJob(const _OrthancPluginCreateJob& parameters); | 50 PluginsJob(const _OrthancPluginCreateJob& parameters); |
51 | 51 |
52 virtual ~PluginsJob(); | 52 virtual ~PluginsJob(); |
53 | 53 |
54 virtual void Start() | 54 virtual void Start() ORTHANC_OVERRIDE |
55 { | 55 { |
56 } | 56 } |
57 | 57 |
58 virtual JobStepResult Step(const std::string& jobId) ORTHANC_OVERRIDE; | 58 virtual JobStepResult Step(const std::string& jobId) ORTHANC_OVERRIDE; |
59 | 59 |
60 virtual void Reset(); | 60 virtual void Reset() ORTHANC_OVERRIDE; |
61 | 61 |
62 virtual void Stop(JobStopReason reason); | 62 virtual void Stop(JobStopReason reason) ORTHANC_OVERRIDE; |
63 | 63 |
64 virtual float GetProgress(); | 64 virtual float GetProgress() ORTHANC_OVERRIDE; |
65 | 65 |
66 virtual void GetJobType(std::string& target) | 66 virtual void GetJobType(std::string& target) ORTHANC_OVERRIDE |
67 { | 67 { |
68 target = type_; | 68 target = type_; |
69 } | 69 } |
70 | 70 |
71 virtual void GetPublicContent(Json::Value& value); | 71 virtual void GetPublicContent(Json::Value& value) ORTHANC_OVERRIDE; |
72 | 72 |
73 virtual bool Serialize(Json::Value& value); | 73 virtual bool Serialize(Json::Value& value) ORTHANC_OVERRIDE; |
74 | 74 |
75 virtual bool GetOutput(std::string& output, | 75 virtual bool GetOutput(std::string& output, |
76 MimeType& mime, | 76 MimeType& mime, |
77 const std::string& key) | 77 const std::string& key) ORTHANC_OVERRIDE |
78 { | 78 { |
79 // TODO | 79 // TODO |
80 return false; | 80 return false; |
81 } | 81 } |
82 }; | 82 }; |