comparison OrthancServer/ServerJobs/ArchiveJob.h @ 2730:cb1b26a7db98

fix mingw compilation
author s.jodogne@gmail.com
date Fri, 13 Jul 2018 12:34:53 +0200
parents 228e2783ce83
children fe4fe52f0c94
comparison
equal deleted inserted replaced
2728:cdf13d06cf40 2730:cb1b26a7db98
49 class ResourceIdentifiers; 49 class ResourceIdentifiers;
50 class ZipCommands; 50 class ZipCommands;
51 class ZipWriterIterator; 51 class ZipWriterIterator;
52 class ZipWriterIterator; 52 class ZipWriterIterator;
53 53
54 boost::shared_ptr<TemporaryFile> target_; 54 boost::shared_ptr<TemporaryFile> target_;
55 ServerContext& context_; 55 ServerContext& context_;
56 std::auto_ptr<ArchiveIndex> archive_; 56 boost::shared_ptr<ArchiveIndex> archive_;
57 bool isMedia_; 57 bool isMedia_;
58 bool enableExtendedSopClass_; 58 bool enableExtendedSopClass_;
59 std::string description_; 59 std::string description_;
60 60
61 std::auto_ptr<ZipWriterIterator> writer_; 61 boost::shared_ptr<ZipWriterIterator> writer_;
62 size_t currentStep_; 62 size_t currentStep_;
63 unsigned int instancesCount_; 63 unsigned int instancesCount_;
64 uint64_t uncompressedSize_; 64 uint64_t uncompressedSize_;
65 65
66 public: 66 public:
67 ArchiveJob(boost::shared_ptr<TemporaryFile>& target, 67 ArchiveJob(boost::shared_ptr<TemporaryFile>& target,
68 ServerContext& context, 68 ServerContext& context,
69 bool isMedia, 69 bool isMedia,