summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/bis_factory.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-09-04 03:58:19 +0200
committerLioncash <mathew1800@gmail.com>2018-09-04 04:52:24 +0200
commita813c10e1c71318925f2e65f2b0926099485bbc4 (patch)
treefc7894ea6e04e565ff4eb29c94b95f8d72a61521 /src/core/file_sys/bis_factory.h
parentMerge pull request #1231 from lioncash/global (diff)
downloadyuzu-a813c10e1c71318925f2e65f2b0926099485bbc4.tar
yuzu-a813c10e1c71318925f2e65f2b0926099485bbc4.tar.gz
yuzu-a813c10e1c71318925f2e65f2b0926099485bbc4.tar.bz2
yuzu-a813c10e1c71318925f2e65f2b0926099485bbc4.tar.lz
yuzu-a813c10e1c71318925f2e65f2b0926099485bbc4.tar.xz
yuzu-a813c10e1c71318925f2e65f2b0926099485bbc4.tar.zst
yuzu-a813c10e1c71318925f2e65f2b0926099485bbc4.zip
Diffstat (limited to 'src/core/file_sys/bis_factory.h')
-rw-r--r--src/core/file_sys/bis_factory.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/file_sys/bis_factory.h b/src/core/file_sys/bis_factory.h
index a970a5e2e..9523dd864 100644
--- a/src/core/file_sys/bis_factory.h
+++ b/src/core/file_sys/bis_factory.h
@@ -5,17 +5,20 @@
#pragma once
#include <memory>
-#include "core/loader/loader.h"
-#include "registered_cache.h"
+
+#include "core/file_sys/vfs.h"
namespace FileSys {
+class RegisteredCache;
+
/// File system interface to the Built-In Storage
/// This is currently missing accessors to BIS partitions, but seemed like a good place for the NAND
/// registered caches.
class BISFactory {
public:
explicit BISFactory(VirtualDir nand_root);
+ ~BISFactory();
std::shared_ptr<RegisteredCache> GetSystemNANDContents() const;
std::shared_ptr<RegisteredCache> GetUserNANDContents() const;