mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
18 lines
245 B
C
18 lines
245 B
C
|
|
/*
|
||
|
|
* 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;
|
||
|
|
|
||
|
|
}
|