comparison Core/JobsEngine/IJob.h @ 2663:228e2783ce83 jobs

some jobs might not be serializable
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 07 Jun 2018 18:18:02 +0200
parents e1893d31652a
children 7cfc8d266f41
comparison
equal deleted inserted replaced
2662:47d812308d63 2663:228e2783ce83
61 61
62 virtual void GetJobType(std::string& target) = 0; 62 virtual void GetJobType(std::string& target) = 0;
63 63
64 virtual void GetPublicContent(Json::Value& value) = 0; 64 virtual void GetPublicContent(Json::Value& value) = 0;
65 65
66 virtual void Serialize(Json::Value& value) = 0; 66 virtual bool Serialize(Json::Value& value) = 0;
67 }; 67 };
68 } 68 }