summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/sdmc_factory.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-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 245060690..bb579472c 100644
--- a/src/core/file_sys/sdmc_factory.h
+++ b/src/core/file_sys/sdmc_factory.h
@@ -15,9 +15,12 @@ public:
explicit SDMCFactory(VirtualDir dir);
ResultVal<VirtualDir> Open();
+ std::shared_ptr<RegisteredCache> GetSDMCContents() const;
private:
VirtualDir dir;
+
+ std::shared_ptr<RegisteredCache> contents;
};
} // namespace FileSys