aboutsummaryrefslogtreecommitdiff
path: root/src/core/file_sys/sdmc_factory.h
diff options
context:
space:
mode:
authorZach Hilman <DarkLordZach@users.noreply.github.com>2018-07-17 15:42:15 -0400
committerbunnei <bunneidev@gmail.com>2018-07-17 12:42:15 -0700
commit69bfe075b5c3f6b17ce269950d1f8c9aab18e2de (patch)
tree8fca65bb5b3a0a8fb2b0772020d5b8d47749c3b3 /src/core/file_sys/sdmc_factory.h
parent88a3140c9b20b2f079f915842b4f30bdc800a53a (diff)
General Filesystem and Save Data Fixes (#670)
Diffstat (limited to 'src/core/file_sys/sdmc_factory.h')
-rw-r--r--src/core/file_sys/sdmc_factory.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/core/file_sys/sdmc_factory.h b/src/core/file_sys/sdmc_factory.h
index 93becda25..09bec7fce 100644
--- a/src/core/file_sys/sdmc_factory.h
+++ b/src/core/file_sys/sdmc_factory.h
@@ -13,16 +13,11 @@
namespace FileSys {
/// File system interface to the SDCard archive
-class SDMC_Factory final : public FileSystemFactory {
+class SDMCFactory {
public:
- explicit SDMC_Factory(std::string sd_directory);
+ explicit SDMCFactory(std::string sd_directory);
- std::string GetName() const override {
- return "SDMC_Factory";
- }
- ResultVal<std::unique_ptr<FileSystemBackend>> Open(const Path& path) override;
- ResultCode Format(const Path& path) override;
- ResultVal<ArchiveFormatInfo> GetFormatInfo(const Path& path) const override;
+ ResultVal<std::unique_ptr<FileSystemBackend>> Open();
private:
std::string sd_directory;