aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/filesystem/filesystem.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-01-20 21:32:36 -0500
committerbunnei <bunneidev@gmail.com>2018-01-21 15:51:43 -0500
commit8e50d6002bd12dde7e4ba4fd3da1b53864c4058c (patch)
treebe6d0f47d8418a61a8e6f86ce0dcdbecf801bebd /src/core/hle/service/filesystem/filesystem.h
parentd9a91d76785da6d0fa32ce32417e12023c8f394e (diff)
fsp_srv: Various improvements to IStorage:Read implementation.
Diffstat (limited to 'src/core/hle/service/filesystem/filesystem.h')
-rw-r--r--src/core/hle/service/filesystem/filesystem.h15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/core/hle/service/filesystem/filesystem.h b/src/core/hle/service/filesystem/filesystem.h
index 52db83e62..a674c9493 100644
--- a/src/core/hle/service/filesystem/filesystem.h
+++ b/src/core/hle/service/filesystem/filesystem.h
@@ -6,11 +6,20 @@
#include <memory>
#include "common/common_types.h"
-#include "core/file_sys/filesystem.h"
#include "core/hle/result.h"
-#include "core/hle/service/service.h"
+
+namespace FileSys {
+class FileSystemBackend;
+class FileSystemFactory;
+class Path;
+} // namespace FileSys
namespace Service {
+
+namespace SM {
+class ServiceManager;
+} // namespace SM
+
namespace FileSystem {
/// Supported FileSystem types
@@ -37,5 +46,5 @@ ResultVal<std::unique_ptr<FileSys::FileSystemBackend>> OpenFileSystem(Type type,
/// Registers all Filesystem services with the specified service manager.
void InstallInterfaces(SM::ServiceManager& service_manager);
-} // namespace Filesystem
+} // namespace FileSystem
} // namespace Service