mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
24 lines
517 B
C
24 lines
517 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2022, Liav A. <liavalb@hotmail.co.il>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <Kernel/FileSystem/SysFS/Component.h>
|
||
|
|
#include <Kernel/Forward.h>
|
||
|
|
|
||
|
|
namespace Kernel {
|
||
|
|
|
||
|
|
class SysFSDevicesDirectory final : public SysFSDirectory {
|
||
|
|
public:
|
||
|
|
virtual StringView name() const override { return "dev"sv; }
|
||
|
|
static NonnullRefPtr<SysFSDevicesDirectory> must_create(SysFSRootDirectory const&);
|
||
|
|
|
||
|
|
private:
|
||
|
|
explicit SysFSDevicesDirectory(SysFSRootDirectory const&);
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|