ladybird/Userland/Libraries/LibIPC/Endpoint.cpp

20 lines
219 B
C++
Raw Normal View History

/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibIPC/Endpoint.h>
namespace IPC {
Endpoint::Endpoint()
{
}
Endpoint::~Endpoint()
{
}
}