mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-11 03:18:23 -05:00
vfs: Replace mode.h include with forward declarations where applicable
Avoids the need to rebuild these source files if the mode header changes.
This commit is contained in:
@ -9,9 +9,8 @@
|
||||
#include <string_view>
|
||||
#include <type_traits>
|
||||
#include <vector>
|
||||
#include "boost/optional.hpp"
|
||||
#include <boost/optional.hpp>
|
||||
#include "common/common_types.h"
|
||||
#include "core/file_sys/mode.h"
|
||||
|
||||
namespace FileSys {
|
||||
|
||||
@ -19,6 +18,8 @@ class VfsDirectory;
|
||||
class VfsFile;
|
||||
class VfsFilesystem;
|
||||
|
||||
enum class Mode : u32;
|
||||
|
||||
// Convenience typedefs to use Vfs* interfaces
|
||||
using VirtualFilesystem = std::shared_ptr<VfsFilesystem>;
|
||||
using VirtualDir = std::shared_ptr<VfsDirectory>;
|
||||
|
Reference in New Issue
Block a user