comparison Core/JobsEngine/Operations/StringOperationValue.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
58 58
59 const std::string& GetContent() const 59 const std::string& GetContent() const
60 { 60 {
61 return content_; 61 return content_;
62 } 62 }
63
64 virtual void Serialize(Json::Value& target) const
65 {
66 target["Type"] = "String";
67 target["Content"] = content_;
68 }
63 }; 69 };
64 } 70 }