mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 02:57:42 +00:00
Kernel: Make VirtualFileSystem::Mount a top-level class
And move it to its own compilation unit.
This commit is contained in:
parent
79552c91d5
commit
6a27de2d94
6 changed files with 109 additions and 62 deletions
17
Kernel/FileSystem/Forward.h
Normal file
17
Kernel/FileSystem/Forward.h
Normal file
|
@ -0,0 +1,17 @@
|
|||
/*
|
||||
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace Kernel {
|
||||
|
||||
class FileSystem;
|
||||
class Inode;
|
||||
class Mount;
|
||||
class VirtualFileSystem;
|
||||
struct InodeMetadata;
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue