summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/sdmc_factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/file_sys/sdmc_factory.h')
-rw-r--r--src/core/file_sys/sdmc_factory.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/file_sys/sdmc_factory.h b/src/core/file_sys/sdmc_factory.h
index a98e44f85..2ef5909a6 100644
--- a/src/core/file_sys/sdmc_factory.h
+++ b/src/core/file_sys/sdmc_factory.h
@@ -11,6 +11,7 @@
namespace FileSys {
class RegisteredCache;
+class PlaceholderCache;
/// File system interface to the SDCard archive
class SDMCFactory {
@@ -23,11 +24,13 @@ public:
VirtualDir GetSDMCContentDirectory() const;
RegisteredCache* GetSDMCContents() const;
+ PlaceholderCache* GetSDMCPlaceholder() const;
private:
VirtualDir dir;
std::unique_ptr<RegisteredCache> contents;
+ std::unique_ptr<PlaceholderCache> placeholder;
};
} // namespace FileSys