summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/sdmc_factory.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-03-20 03:17:15 +0100
committerSubv <subv2112@gmail.com>2018-03-20 03:17:15 +0100
commitc4ca802b9dc7f0d3f3aed5aa937240bf85370c15 (patch)
tree12199ad7acfb7b1b886eda7ad01d968e10c9051c /src/core/file_sys/sdmc_factory.h
parentMerge pull request #251 from Subv/tic_tsc (diff)
downloadyuzu-c4ca802b9dc7f0d3f3aed5aa937240bf85370c15.tar
yuzu-c4ca802b9dc7f0d3f3aed5aa937240bf85370c15.tar.gz
yuzu-c4ca802b9dc7f0d3f3aed5aa937240bf85370c15.tar.bz2
yuzu-c4ca802b9dc7f0d3f3aed5aa937240bf85370c15.tar.lz
yuzu-c4ca802b9dc7f0d3f3aed5aa937240bf85370c15.tar.xz
yuzu-c4ca802b9dc7f0d3f3aed5aa937240bf85370c15.tar.zst
yuzu-c4ca802b9dc7f0d3f3aed5aa937240bf85370c15.zip
Diffstat (limited to 'src/core/file_sys/sdmc_factory.h')
-rw-r--r--src/core/file_sys/sdmc_factory.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/core/file_sys/sdmc_factory.h b/src/core/file_sys/sdmc_factory.h
new file mode 100644
index 000000000..93becda25
--- /dev/null
+++ b/src/core/file_sys/sdmc_factory.h
@@ -0,0 +1,31 @@
+// Copyright 2018 yuzu emulator team
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include <memory>
+#include <string>
+#include "common/common_types.h"
+#include "core/file_sys/filesystem.h"
+#include "core/hle/result.h"
+
+namespace FileSys {
+
+/// File system interface to the SDCard archive
+class SDMC_Factory final : public FileSystemFactory {
+public:
+ explicit SDMC_Factory(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;
+
+private:
+ std::string sd_directory;
+};
+
+} // namespace FileSys