Core: Cleanup file_sys includes.

This commit is contained in:
Emmanuel Gil Peyrot
2015-06-21 15:44:11 +01:00
parent aea15f5c73
commit e5fcabdd69
22 changed files with 73 additions and 38 deletions

View File

@ -4,22 +4,25 @@
#pragma once
#include <memory>
#include <string>
#include "common/common_types.h"
#include "core/file_sys/archive_backend.h"
#include "core/hle/kernel/kernel.h"
#include "core/hle/kernel/session.h"
#include "core/hle/result.h"
namespace FileSys {
class DirectoryBackend;
class FileBackend;
}
/// The unique system identifier hash, also known as ID0
extern const std::string SYSTEM_ID;
/// The scrambled SD card CID, also known as ID1
extern const std::string SDCARD_ID;
namespace Kernel {
class Session;
}
namespace Service {
namespace FS {