diff options
author | Andreas Kling <kling@serenityos.org> | 2020-02-16 01:50:16 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-16 01:50:32 +0100 |
commit | e28809a996d41fdd353b110284af2464e6b9c81e (patch) | |
tree | 03bb7ddd3485a7737d2b14099125208e29005cb8 /Kernel/FileSystem/File.h | |
parent | 1d611e4a1108dc8915d6bcf4af95d485d4e18299 (diff) | |
download | serenity-e28809a996d41fdd353b110284af2464e6b9c81e.zip |
Kernel: Add forward declaration header
Diffstat (limited to 'Kernel/FileSystem/File.h')
-rw-r--r-- | Kernel/FileSystem/File.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Kernel/FileSystem/File.h b/Kernel/FileSystem/File.h index c812b9b2ca..3779ef8510 100644 --- a/Kernel/FileSystem/File.h +++ b/Kernel/FileSystem/File.h @@ -30,16 +30,13 @@ #include <AK/RefCounted.h> #include <AK/String.h> #include <AK/Types.h> +#include <Kernel/Forward.h> #include <Kernel/KResult.h> #include <Kernel/UnixTypes.h> #include <LibBareMetal/Memory/VirtualAddress.h> namespace Kernel { -class FileDescription; -class Process; -class Region; - // File is the base class for anything that can be referenced by a FileDescription. // // The most important functions in File are: |