diff options
| author | Stefan Boberg <[email protected]> | 2023-05-02 10:01:47 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-05-02 10:01:47 +0200 |
| commit | 075d17f8ada47e990fe94606c3d21df409223465 (patch) | |
| tree | e50549b766a2f3c354798a54ff73404217b4c9af /zenserver/frontend/zipfs.h | |
| parent | fix: bundle shouldn't append content zip to zen (diff) | |
| download | zen-075d17f8ada47e990fe94606c3d21df409223465.tar.xz zen-075d17f8ada47e990fe94606c3d21df409223465.zip | |
moved source directories into `/src` (#264)
* moved source directories into `/src`
* updated bundle.lua for new `src` path
* moved some docs, icon
* removed old test trees
Diffstat (limited to 'zenserver/frontend/zipfs.h')
| -rw-r--r-- | zenserver/frontend/zipfs.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/zenserver/frontend/zipfs.h b/zenserver/frontend/zipfs.h deleted file mode 100644 index e1fa4457c..000000000 --- a/zenserver/frontend/zipfs.h +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright Epic Games, Inc. All Rights Reserved. - -#pragma once - -#include <zencore/iobuffer.h> - -#include <unordered_map> - -namespace zen { - -////////////////////////////////////////////////////////////////////////// -class ZipFs -{ -public: - ZipFs() = default; - ZipFs(IoBuffer&& Buffer); - IoBuffer GetFile(const std::string_view& FileName) const; - -private: - using FileItem = MemoryView; - using FileMap = std::unordered_map<std::string_view, FileItem>; - FileMap mutable m_Files; - IoBuffer m_Buffer; -}; - -} // namespace zen |