From 78803ce384d62c40958cc8191a036307f5d8bc9f Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Mon, 3 May 2021 08:46:40 +0200 Subject: Userland: Split IPC endpoints into proxies and stubs This enables support for automatically generating client methods. With this added the user gets code completion support for all IPC methods which are available on a connection object. --- Userland/Services/Clipboard/ClientConnection.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Userland/Services/Clipboard') diff --git a/Userland/Services/Clipboard/ClientConnection.h b/Userland/Services/Clipboard/ClientConnection.h index 70d33da56d..1bf0055b2d 100644 --- a/Userland/Services/Clipboard/ClientConnection.h +++ b/Userland/Services/Clipboard/ClientConnection.h @@ -15,8 +15,7 @@ namespace Clipboard { class ClientConnection final : public IPC::ClientConnection - , public ClipboardServerEndpoint { - +{ C_OBJECT(ClientConnection); public: -- cgit v1.2.3