Kernel: More header dependency reduction work

This commit is contained in:
Andreas Kling 2020-02-16 02:15:33 +01:00
commit 635ae70b8f
Notes: sideshowbarker 2024-07-19 09:17:18 +09:00
6 changed files with 7 additions and 10 deletions

View file

@ -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;