comparison Core/JobsEngine/IJob.h @ 2648:e1893d31652a jobs

serialization of JobHandler
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 31 May 2018 18:44:05 +0200
parents 34dc57f4a7d2
children 228e2783ce83
comparison
equal deleted inserted replaced
2647:73d7d95dd75e 2648:e1893d31652a
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 GetInternalContent(Json::Value& value) = 0; 66 virtual void Serialize(Json::Value& value) = 0;
67 }; 67 };
68 } 68 }