comparison OrthancServer/ServerJobs/ArchiveJob.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 cb1b26a7db98
comparison
equal deleted inserted replaced
2662:47d812308d63 2663:228e2783ce83
95 95
96 virtual void GetJobType(std::string& target); 96 virtual void GetJobType(std::string& target);
97 97
98 virtual void GetPublicContent(Json::Value& value); 98 virtual void GetPublicContent(Json::Value& value);
99 99
100 virtual void Serialize(Json::Value& value); 100 virtual bool Serialize(Json::Value& value)
101 {
102 return false; // Cannot serialize this kind of job
103 }
101 }; 104 };
102 } 105 }