Kernel: Move Inode to its own files.

This commit is contained in:
Andreas Kling 2019-05-16 03:02:37 +02:00
commit 176f683f66
Notes: sideshowbarker 2024-07-19 14:07:19 +09:00
11 changed files with 240 additions and 205 deletions

View file

@ -1,7 +1,8 @@
#pragma once
#include "FileSystem.h"
#include "UnixTypes.h"
#include <Kernel/FileSystem/FileSystem.h>
#include <Kernel/FileSystem/Inode.h>
#include <Kernel/UnixTypes.h>
#include <AK/HashMap.h>
class SynthFSInode;