summaryrefslogtreecommitdiff
path: root/Libraries/LibProtocol
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-12-02 09:52:07 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-12-02 11:11:05 +0100
commit5d4ee0f58ae974a3c34a246a52a1cbab1dce1e88 (patch)
tree9707f8c91a1c9012490b47230f3026a3341945a5 /Libraries/LibProtocol
parent272d65e3e2ed32981114d89df26d9154e51fb47e (diff)
downloadserenity-5d4ee0f58ae974a3c34a246a52a1cbab1dce1e88.zip
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.
Diffstat (limited to 'Libraries/LibProtocol')
-rw-r--r--Libraries/LibProtocol/Client.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibProtocol/Client.h b/Libraries/LibProtocol/Client.h
index f334e2a47d..fc90dc9320 100644
--- a/Libraries/LibProtocol/Client.h
+++ b/Libraries/LibProtocol/Client.h
@@ -1,6 +1,6 @@
#pragma once
-#include <LibCore/CoreIPCClient.h>
+#include <LibIPC/IServerConnection.h>
#include <ProtocolServer/ProtocolClientEndpoint.h>
#include <ProtocolServer/ProtocolServerEndpoint.h>