diff options
| author | bunnei <bunneidev@gmail.com> | 2018-09-04 11:51:54 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-04 11:51:54 -0400 |
| commit | 8ec1e168672a0e3798eb45680e0fed59f3775645 (patch) | |
| tree | c7358ce2a72143b4fe1704c889716075cce58f98 /src/core/file_sys/bis_factory.cpp | |
| parent | 5a29b358aace5d43fd0208fc390b3198af995174 (diff) | |
| parent | a813c10e1c71318925f2e65f2b0926099485bbc4 (diff) | |
Merge pull request #1235 from lioncash/forward-decl
file_sys: Replace includes with forward declarations where applicable
Diffstat (limited to 'src/core/file_sys/bis_factory.cpp')
| -rw-r--r-- | src/core/file_sys/bis_factory.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/file_sys/bis_factory.cpp b/src/core/file_sys/bis_factory.cpp index 08a7cea5a..205492897 100644 --- a/src/core/file_sys/bis_factory.cpp +++ b/src/core/file_sys/bis_factory.cpp @@ -3,6 +3,7 @@ // Refer to the license.txt file included. #include "core/file_sys/bis_factory.h" +#include "core/file_sys/registered_cache.h" namespace FileSys { @@ -13,6 +14,8 @@ BISFactory::BISFactory(VirtualDir nand_root_) usrnand_cache(std::make_shared<RegisteredCache>( GetOrCreateDirectoryRelative(nand_root, "/user/Contents/registered"))) {} +BISFactory::~BISFactory() = default; + std::shared_ptr<RegisteredCache> BISFactory::GetSystemNANDContents() const { return sysnand_cache; } |
