summaryrefslogtreecommitdiff
path: root/src/core/core.h
diff options
context:
space:
mode:
authorGravatar David2019-09-22 11:42:34 +1000
committerGravatar GitHub2019-09-22 11:42:34 +1000
commitc9ccdfbeac21ddd74d3cc79e8ef2c8d82f3d4efd (patch)
treee260125fd1ef6e8a29b255b967a447eeb1aeb204 /src/core/core.h
parentMerge pull request #2883 from ogniK5377/log-game (diff)
parentconfigure_debug: Move reporting option to logging (diff)
downloadyuzu-c9ccdfbeac21ddd74d3cc79e8ef2c8d82f3d4efd.tar.gz
yuzu-c9ccdfbeac21ddd74d3cc79e8ef2c8d82f3d4efd.tar.xz
yuzu-c9ccdfbeac21ddd74d3cc79e8ef2c8d82f3d4efd.zip
Merge pull request #2430 from DarkLordZach/fs-controller
core: Implement FileSystemController to deglobalize FS services
Diffstat (limited to 'src/core/core.h')
-rw-r--r--src/core/core.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h
index 0138d93b0..bb2962fdd 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -47,6 +47,10 @@ namespace APM {
47class Controller; 47class Controller;
48} 48}
49 49
50namespace FileSystem {
51class FileSystemController;
52} // namespace FileSystem
53
50namespace Glue { 54namespace Glue {
51class ARPManager; 55class ARPManager;
52} 56}
@@ -299,6 +303,10 @@ public:
299 303
300 const FileSys::ContentProvider& GetContentProvider() const; 304 const FileSys::ContentProvider& GetContentProvider() const;
301 305
306 Service::FileSystem::FileSystemController& GetFileSystemController();
307
308 const Service::FileSystem::FileSystemController& GetFileSystemController() const;
309
302 void RegisterContentProvider(FileSys::ContentProviderUnionSlot slot, 310 void RegisterContentProvider(FileSys::ContentProviderUnionSlot slot,
303 FileSys::ContentProvider* provider); 311 FileSys::ContentProvider* provider);
304 312