comparison OrthancServer/Sources/ServerJobs/ArchiveJob.cpp @ 4510:a3635a01a945

fix signature of virtual method
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 11 Feb 2021 17:51:04 +0100
parents 98b7b9d21d83
children 94147ce2f097
comparison
equal deleted inserted replaced
4509:98b7b9d21d83 4510:a3635a01a945
193 const std::string& publicId) = 0; 193 const std::string& publicId) = 0;
194 194
195 virtual void Close() = 0; 195 virtual void Close() = 0;
196 196
197 virtual void AddInstance(const std::string& instanceId, 197 virtual void AddInstance(const std::string& instanceId,
198 size_t uncompressedSize) = 0; 198 uint64_t uncompressedSize) = 0;
199 }; 199 };
200 200
201 201
202 class ArchiveJob::ArchiveIndex : public boost::noncopyable 202 class ArchiveJob::ArchiveIndex : public boost::noncopyable
203 { 203 {