Mercurial > hg > orthanc
comparison OrthancServer/Sources/ServerJobs/OrthancJobUnserializer.h @ 4205:d962a2996637
cppcheck
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 17 Sep 2020 17:58:19 +0200 |
parents | 05b8fd21089c |
children | 2ae905070221 |
comparison
equal
deleted
inserted
replaced
4204:318c16cfccab | 4205:d962a2996637 |
---|---|
43 { | 43 { |
44 private: | 44 private: |
45 ServerContext& context_; | 45 ServerContext& context_; |
46 | 46 |
47 public: | 47 public: |
48 OrthancJobUnserializer(ServerContext& context) : | 48 explicit OrthancJobUnserializer(ServerContext& context) : |
49 context_(context) | 49 context_(context) |
50 { | 50 { |
51 } | 51 } |
52 | 52 |
53 virtual IJob* UnserializeJob(const Json::Value& value); | 53 virtual IJob* UnserializeJob(const Json::Value& value) ORTHANC_OVERRIDE; |
54 | 54 |
55 virtual IJobOperation* UnserializeOperation(const Json::Value& value); | 55 virtual IJobOperation* UnserializeOperation(const Json::Value& value) ORTHANC_OVERRIDE; |
56 | 56 |
57 virtual JobOperationValue* UnserializeValue(const Json::Value& value); | 57 virtual JobOperationValue* UnserializeValue(const Json::Value& value) ORTHANC_OVERRIDE; |
58 }; | 58 }; |
59 } | 59 } |