LibIPC: Start fleshing out a separate IPC library

This will be a place to put object serialization/deserialization logic,
message parsing, endpoint management, etc.
This commit is contained in:
Andreas Kling 2019-08-03 15:29:40 +02:00
commit a40e763b2a
Notes: sideshowbarker 2024-07-19 12:55:29 +09:00
7 changed files with 81 additions and 0 deletions

View file

@ -0,0 +1,9 @@
#include <LibIPC/IEndpoint.h>
IEndpoint::IEndpoint()
{
}
IEndpoint::~IEndpoint()
{
}