comparison OrthancFramework/Sources/JobsEngine/Operations/NullOperationValue.h @ 4202:2007ab69ac16

moving ORTHANC_FORCE_INLINE and ORTHANC_OVERRIDE from Enumerations.h to Compatibility.h
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 17 Sep 2020 08:35:11 +0200
parents bf7b9edf6b81
children 50b0c69b653a
comparison
equal deleted inserted replaced
4201:2d5209153b32 4202:2007ab69ac16
32 NullOperationValue() : 32 NullOperationValue() :
33 JobOperationValue(Type_Null) 33 JobOperationValue(Type_Null)
34 { 34 {
35 } 35 }
36 36
37 virtual JobOperationValue* Clone() const 37 virtual JobOperationValue* Clone() const ORTHANC_OVERRIDE
38 { 38 {
39 return new NullOperationValue; 39 return new NullOperationValue;
40 } 40 }
41 41
42 virtual void Serialize(Json::Value& target) const 42 virtual void Serialize(Json::Value& target) const ORTHANC_OVERRIDE
43 { 43 {
44 target = Json::objectValue; 44 target = Json::objectValue;
45 target["Type"] = "Null"; 45 target["Type"] = "Null";
46 } 46 }
47 }; 47 };