mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:27:44 +00:00
Kernel: More header dependency reduction work
This commit is contained in:
parent
16818322c5
commit
635ae70b8f
6 changed files with 7 additions and 10 deletions
|
@ -34,8 +34,10 @@ namespace Kernel {
|
|||
|
||||
class FileDescription;
|
||||
|
||||
class LocalSocket final : public Socket, public InlineLinkedListNode<LocalSocket> {
|
||||
class LocalSocket final : public Socket
|
||||
, public InlineLinkedListNode<LocalSocket> {
|
||||
friend class InlineLinkedListNode<LocalSocket>;
|
||||
|
||||
public:
|
||||
static KResultOr<NonnullRefPtr<Socket>> create(int type);
|
||||
virtual ~LocalSocket() override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue