Mercurial > hg > orthanc
comparison OrthancFramework/Sources/Compression/ZipReader.h @ 4356:18c94a82f3d4
cppcheck
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 08 Dec 2020 12:55:32 +0100 |
parents | 460a71988208 |
children | d9473bd5ed43 |
comparison
equal
deleted
inserted
replaced
4355:460a71988208 | 4356:18c94a82f3d4 |
---|---|
60 public: | 60 public: |
61 ~ZipReader(); | 61 ~ZipReader(); |
62 | 62 |
63 uint64_t GetFilesCount() const; | 63 uint64_t GetFilesCount() const; |
64 | 64 |
65 bool ReadNextFile(std::string& content, | 65 bool ReadNextFile(std::string& filename, |
66 std::string& filename); | 66 std::string& content); |
67 | 67 |
68 static ZipReader* CreateFromMemory(const void* buffer, | 68 static ZipReader* CreateFromMemory(const void* buffer, |
69 size_t size); | 69 size_t size); |
70 | 70 |
71 static ZipReader* CreateFromMemory(const std::string& buffer); | 71 static ZipReader* CreateFromMemory(const std::string& buffer); |