comparison OrthancServer/ServerJobs/ArchiveJob.h @ 2966:10c610e80b15

refactoring
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 05 Dec 2018 15:27:01 +0100
parents 9c0b0a6d8b54
children cb5d75143da0
comparison
equal deleted inserted replaced
2965:9c0b0a6d8b54 2966:10c610e80b15
61 size_t currentStep_; 61 size_t currentStep_;
62 unsigned int instancesCount_; 62 unsigned int instancesCount_;
63 uint64_t uncompressedSize_; 63 uint64_t uncompressedSize_;
64 64
65 public: 65 public:
66 ArchiveJob(boost::shared_ptr<TemporaryFile>& synchronousTarget, 66 ArchiveJob(ServerContext& context,
67 ServerContext& context,
68 bool isMedia, 67 bool isMedia,
69 bool enableExtendedSopClass); 68 bool enableExtendedSopClass);
70 69
70 void SetSynchronousTarget(boost::shared_ptr<TemporaryFile>& synchronousTarget);
71
71 void SetDescription(const std::string& description) 72 void SetDescription(const std::string& description)
72 { 73 {
73 description_ = description; 74 description_ = description;
74 } 75 }
75 76