comparison Core/JobsEngine/Operations/NullOperationValue.h @ 2616:2f3007bf0708 jobs

event queues in Lua, serialization of sequence of operations
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 22 May 2018 12:25:37 +0200
parents 5b6c3d77a2a1
children c196d76cb8fa
comparison
equal deleted inserted replaced
2614:3200223f9ade 2616:2f3007bf0708
47 47
48 virtual JobOperationValue* Clone() const 48 virtual JobOperationValue* Clone() const
49 { 49 {
50 return new NullOperationValue; 50 return new NullOperationValue;
51 } 51 }
52
53 virtual void Serialize(Json::Value& target) const
54 {
55 target["Type"] = "Null";
56 }
52 }; 57 };
53 } 58 }