mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 19:07:35 +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:
parent
272d65e3e2
commit
5d4ee0f58a
9 changed files with 7 additions and 7 deletions
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
#include <AudioServer/AudioClientEndpoint.h>
|
#include <AudioServer/AudioClientEndpoint.h>
|
||||||
#include <AudioServer/AudioServerEndpoint.h>
|
#include <AudioServer/AudioServerEndpoint.h>
|
||||||
#include <LibCore/CoreIPCClient.h>
|
#include <LibIPC/IServerConnection.h>
|
||||||
|
|
||||||
class ABuffer;
|
class ABuffer;
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <LibCore/CoreIPCClient.h>
|
#include <LibIPC/IServerConnection.h>
|
||||||
#include <WindowServer/WindowClientEndpoint.h>
|
#include <WindowServer/WindowClientEndpoint.h>
|
||||||
#include <WindowServer/WindowServerEndpoint.h>
|
#include <WindowServer/WindowServerEndpoint.h>
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <LibCore/CoreIPCClient.h>
|
#include <LibIPC/IServerConnection.h>
|
||||||
#include <ProtocolServer/ProtocolClientEndpoint.h>
|
#include <ProtocolServer/ProtocolClientEndpoint.h>
|
||||||
#include <ProtocolServer/ProtocolServerEndpoint.h>
|
#include <ProtocolServer/ProtocolServerEndpoint.h>
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <AudioServer/AudioServerEndpoint.h>
|
#include <AudioServer/AudioServerEndpoint.h>
|
||||||
#include <LibCore/CoreIPCServer.h>
|
#include <LibIPC/IClientConnection.h>
|
||||||
|
|
||||||
class ABuffer;
|
class ABuffer;
|
||||||
class ASBufferQueue;
|
class ASBufferQueue;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <AK/Badge.h>
|
#include <AK/Badge.h>
|
||||||
#include <LibCore/CoreIPCServer.h>
|
#include <LibIPC/IClientConnection.h>
|
||||||
#include <ProtocolServer/ProtocolServerEndpoint.h>
|
#include <ProtocolServer/ProtocolServerEndpoint.h>
|
||||||
|
|
||||||
class Download;
|
class Download;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#include <LibCore/CEventLoop.h>
|
#include <LibCore/CEventLoop.h>
|
||||||
#include <LibCore/CLocalServer.h>
|
#include <LibCore/CLocalServer.h>
|
||||||
#include <LibCore/CoreIPCServer.h>
|
#include <LibIPC/IClientConnection.h>
|
||||||
#include <ProtocolServer/HttpProtocol.h>
|
#include <ProtocolServer/HttpProtocol.h>
|
||||||
#include <ProtocolServer/PSClientConnection.h>
|
#include <ProtocolServer/PSClientConnection.h>
|
||||||
|
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
#include <AK/OwnPtr.h>
|
#include <AK/OwnPtr.h>
|
||||||
#include <AK/WeakPtr.h>
|
#include <AK/WeakPtr.h>
|
||||||
#include <LibCore/CObject.h>
|
#include <LibCore/CObject.h>
|
||||||
#include <LibCore/CoreIPCServer.h>
|
|
||||||
#include <LibDraw/GraphicsBitmap.h>
|
#include <LibDraw/GraphicsBitmap.h>
|
||||||
|
#include <LibIPC/IClientConnection.h>
|
||||||
#include <WindowServer/WSEvent.h>
|
#include <WindowServer/WSEvent.h>
|
||||||
#include <WindowServer/WindowServerEndpoint.h>
|
#include <WindowServer/WindowServerEndpoint.h>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue