comparison Core/JobsEngine/Operations/NullOperationValue.h @ 2655:c196d76cb8fa jobs

serialization
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 05 Jun 2018 17:57:49 +0200
parents 2f3007bf0708
children 4e43e67f8ecf
comparison
equal deleted inserted replaced
2654:761031029aa9 2655:c196d76cb8fa
50 return new NullOperationValue; 50 return new NullOperationValue;
51 } 51 }
52 52
53 virtual void Serialize(Json::Value& target) const 53 virtual void Serialize(Json::Value& target) const
54 { 54 {
55 target = Json::objectValue;
55 target["Type"] = "Null"; 56 target["Type"] = "Null";
56 } 57 }
57 }; 58 };
58 } 59 }