1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 14:15:07 +00:00

Kernel: Move Inode to its own files.

This commit is contained in:
Andreas Kling 2019-05-16 03:02:37 +02:00
parent 8aecebe8f3
commit 176f683f66
11 changed files with 240 additions and 205 deletions

View file

@ -1,6 +1,7 @@
#include <Kernel/VM/VMObject.h>
#include <Kernel/VM/MemoryManager.h>
#include <FileSystem/FileSystem.h>
#include <Kernel/FileSystem/FileSystem.h>
#include <Kernel/FileSystem/Inode.h>
Retained<VMObject> VMObject::create_file_backed(RetainPtr<Inode>&& inode)
{