comparison Core/JobsEngine/IJob.h @ 2573:3372c5255333 jobs

StoreScuJob, Orthanc Explorer for jobs
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 09 May 2018 17:56:14 +0200
parents 2e879c796ec7
children 1b6a6d80b6f2
comparison
equal deleted inserted replaced
2570:2e879c796ec7 2573:3372c5255333
54 54
55 virtual void ReleaseResources() = 0; // For pausing jobs 55 virtual void ReleaseResources() = 0; // For pausing jobs
56 56
57 virtual float GetProgress() = 0; 57 virtual float GetProgress() = 0;
58 58
59 virtual void GetDescription(Json::Value& value) = 0; 59 virtual void GetJobType(std::string& target) = 0;
60
61 virtual void GetPublicContent(Json::Value& value) = 0;
62
63 virtual void GetInternalContent(Json::Value& value) = 0;
60 }; 64 };
61 } 65 }