aboutsummaryrefslogtreecommitdiff
path: root/src/core/file_sys/archive_sdmc.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-02-10 18:27:16 -0500
committerbunnei <bunneidev@gmail.com>2015-02-10 18:27:16 -0500
commit27e6e6b3cb2ee1ab3a996c2b4be1d9a3c4e6b75d (patch)
treefd8b0290d4a0353c11c0e168200b20b5a89e297c /src/core/file_sys/archive_sdmc.h
parent67db6aa4ce1f57f7d99406c8924ed41e74d36dbe (diff)
parent0d2b6dd6566b6718c806181c1f1c3bcdcede86ae (diff)
Merge pull request #540 from yuriks/multi-archives
FS: Allow multiple instances of the same archive type to be open at once
Diffstat (limited to 'src/core/file_sys/archive_sdmc.h')
-rw-r--r--src/core/file_sys/archive_sdmc.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/core/file_sys/archive_sdmc.h b/src/core/file_sys/archive_sdmc.h
index 1b801f217..1becf6c0f 100644
--- a/src/core/file_sys/archive_sdmc.h
+++ b/src/core/file_sys/archive_sdmc.h
@@ -15,9 +15,9 @@
namespace FileSys {
/// File system interface to the SDMC archive
-class Archive_SDMC final : public DiskArchive {
+class ArchiveFactory_SDMC final : public ArchiveFactory {
public:
- Archive_SDMC(const std::string& mount_point);
+ ArchiveFactory_SDMC(const std::string& mount_point);
/**
* Initialize the archive.
@@ -26,6 +26,12 @@ public:
bool Initialize();
std::string GetName() const override { return "SDMC"; }
+
+ ResultVal<std::unique_ptr<ArchiveBackend>> Open(const Path& path) override;
+ ResultCode Format(const Path& path) override;
+
+private:
+ std::string sdmc_directory;
};
} // namespace FileSys