1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:17:44 +00:00

Kernel: Add forward declaration header

This commit is contained in:
Andreas Kling 2020-02-16 01:50:16 +01:00
parent 1d611e4a11
commit e28809a996
19 changed files with 86 additions and 49 deletions

View file

@ -34,17 +34,12 @@
#include <Kernel/FileSystem/FileSystem.h>
#include <Kernel/FileSystem/InodeIdentifier.h>
#include <Kernel/FileSystem/InodeMetadata.h>
#include <Kernel/Forward.h>
#include <Kernel/KResult.h>
#include <Kernel/Lock.h>
namespace Kernel {
class FileDescription;
class InodeVMObject;
class InodeWatcher;
class LocalSocket;
class Custody;
class Inode : public RefCounted<Inode>
, public Weakable<Inode>
, public InlineLinkedListNode<Inode> {