diff options
| author | Zach Hilman <zachhilman@gmail.com> | 2018-08-16 17:06:56 -0400 |
|---|---|---|
| committer | Zach Hilman <zachhilman@gmail.com> | 2018-08-23 11:53:30 -0400 |
| commit | 13524578b602a264a3925c5f4a2ce9607541d2fc (patch) | |
| tree | 5d30961c9528446156add23e6804514c50de9ff9 /src/core/file_sys/sdmc_factory.h | |
| parent | 4112dd6b4ecb35fcbdfb65786ea5c6c57c95f1ef (diff) | |
sdmc_factory: Add SDMC RegisteredCache getter
Diffstat (limited to 'src/core/file_sys/sdmc_factory.h')
| -rw-r--r-- | src/core/file_sys/sdmc_factory.h | 3 |
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 |
