diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-12-02 09:52:07 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-12-02 11:11:05 +0100 |
commit | 5d4ee0f58ae974a3c34a246a52a1cbab1dce1e88 (patch) | |
tree | 9707f8c91a1c9012490b47230f3026a3341945a5 /Libraries/LibProtocol | |
parent | 272d65e3e2ed32981114d89df26d9154e51fb47e (diff) | |
download | serenity-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.h | 2 |
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> |