mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-07 19:57:45 +03:00
27 lines
546 B
C++
27 lines
546 B
C++
/*
|
|
* Copyright (c) 2021, Liav A. <liavalb@hotmail.co.il>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <Kernel/FileSystem/SysFS/Inode.h>
|
|
|
|
namespace Kernel {
|
|
|
|
class SysFSLinkInode : public SysFSInode {
|
|
friend class SysFS;
|
|
|
|
public:
|
|
static ErrorOr<NonnullLockRefPtr<SysFSLinkInode>> try_create(SysFS const&, SysFSComponent const&);
|
|
virtual ~SysFSLinkInode() override;
|
|
|
|
protected:
|
|
SysFSLinkInode(SysFS const&, SysFSComponent const&);
|
|
// ^Inode
|
|
virtual InodeMetadata metadata() const override;
|
|
};
|
|
|
|
}
|