aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/file_sys/file_romfs.h
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner <yuriks@yuriks.net>2014-12-15 06:41:02 -0200
committerGravatar Yuri Kunde Schlesner <yuriks@yuriks.net>2014-12-16 01:08:44 -0200
commit83e6e4ffec9ca67fbca5536bb0ed7b4876ade0db (patch)
tree0e8b9aebaaebd6651e27b444964e95ef4c14d699 /src/core/file_sys/file_romfs.h
parent0931a42af0c0666dd9fbc20484b399c0e1ad3361 (diff)
FS.Archive: Clean up treatment of archives and their handles
- Refactor FS::Archive internals to make Archive creation and lifetime management clearer. - Remove the "Archive as a File" hack. - Implement 64-bit Archive handles.
Diffstat (limited to 'src/core/file_sys/file_romfs.h')
-rw-r--r--src/core/file_sys/file_romfs.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/core/file_sys/file_romfs.h b/src/core/file_sys/file_romfs.h
index 4ddaafe2..09fa2e7e 100644
--- a/src/core/file_sys/file_romfs.h
+++ b/src/core/file_sys/file_romfs.h
@@ -14,10 +14,11 @@
namespace FileSys {
+class Archive_RomFS;
+
class File_RomFS final : public FileBackend {
public:
- File_RomFS();
- ~File_RomFS() override;
+ File_RomFS(const Archive_RomFS* archive) : archive(archive) {}
/**
* Open the file
@@ -62,6 +63,9 @@ public:
* @return true if the file closed correctly
*/
bool Close() const override;
+
+private:
+ const Archive_RomFS* archive;
};
} // namespace FileSys