MCPcopy Create free account
hub / github.com/assimp/assimp / ZipFileInfo

Class ZipFileInfo

code/Common/ZipArchiveIOSystem.cpp:227–238  ·  view source on GitHub ↗

---------------------------------------------------------------- Info about a read-only file inside a ZIP

Source from the content-addressed store, hash-verified

225// ----------------------------------------------------------------
226// Info about a read-only file inside a ZIP
227class ZipFileInfo final {
228public:
229 explicit ZipFileInfo(unzFile zip_handle, size_t size);
230 ~ZipFileInfo() = default;
231
232 // Allocate and Extract data from the ZIP
233 ZipFile *Extract(std::string &filename, unzFile zip_handle) const;
234
235private:
236 size_t m_Size = 0;
237 unz_file_pos_s m_ZipFilePos;
238};
239
240// ----------------------------------------------------------------
241ZipFileInfo::ZipFileInfo(unzFile zip_handle, size_t size) :

Callers 1

MapArchiveMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected