comparison Framework/Common/NullValue.h @ 243:f5dc59c56e65

simplification
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 13 Apr 2021 17:53:53 +0200
parents 3236894320d6
children 16aac0287485
comparison
equal deleted inserted replaced
242:b97a537f4613 243:f5dc59c56e65
34 { 34 {
35 return ValueType_Null; 35 return ValueType_Null;
36 } 36 }
37 37
38 virtual IValue* Convert(ValueType target) const ORTHANC_OVERRIDE; 38 virtual IValue* Convert(ValueType target) const ORTHANC_OVERRIDE;
39
40 virtual std::string Format() const ORTHANC_OVERRIDE
41 {
42 return "(null)";
43 }
44 }; 39 };
45 } 40 }