1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-23 04:07:34 +00:00

LibIPC: Move IPC client/server connection templates to LibIPC

Move over the CoreIPC::Server and CoreIPC::Client namespace stuff
into LibIPC where it will soon becomes LibIPC-style things.
This commit is contained in:
Andreas Kling 2019-12-02 09:52:07 +01:00
parent 272d65e3e2
commit 5d4ee0f58a
9 changed files with 7 additions and 7 deletions

View file

@ -1,6 +1,6 @@
#include <LibCore/CEventLoop.h>
#include <LibCore/CLocalServer.h>
#include <LibCore/CoreIPCServer.h>
#include <LibIPC/IClientConnection.h>
#include <ProtocolServer/HttpProtocol.h>
#include <ProtocolServer/PSClientConnection.h>