comparison OrthancFramework/Sources/JobsEngine/Operations/NullOperationValue.h @ 4310:2ae905070221

renaming pure interface JobOperationValue as IJobOperationValue
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 09 Nov 2020 14:40:51 +0100
parents 50b0c69b653a
children d9473bd5ed43
comparison
equal deleted inserted replaced
4309:73de065622ec 4310:2ae905070221
20 **/ 20 **/
21 21
22 22
23 #pragma once 23 #pragma once
24 24
25 #include "JobOperationValue.h" 25 #include "IJobOperationValue.h"
26 26
27 #include "../../Compatibility.h" // For ORTHANC_OVERRIDE 27 #include "../../Compatibility.h" // For ORTHANC_OVERRIDE
28 28
29 namespace Orthanc 29 namespace Orthanc
30 { 30 {
31 class ORTHANC_PUBLIC NullOperationValue : public JobOperationValue 31 class ORTHANC_PUBLIC NullOperationValue : public IJobOperationValue
32 { 32 {
33 public: 33 public:
34 virtual Type GetType() const ORTHANC_OVERRIDE; 34 virtual Type GetType() const ORTHANC_OVERRIDE;
35 35
36 virtual JobOperationValue* Clone() const ORTHANC_OVERRIDE; 36 virtual IJobOperationValue* Clone() const ORTHANC_OVERRIDE;
37 37
38 virtual void Serialize(Json::Value& target) const ORTHANC_OVERRIDE; 38 virtual void Serialize(Json::Value& target) const ORTHANC_OVERRIDE;
39 }; 39 };
40 } 40 }