summaryrefslogtreecommitdiff
path: root/Userland/Services/SymbolServer/ClientConnection.h
diff options
context:
space:
mode:
authorGunnar Beutner <gbeutner@serenityos.org>2021-05-03 08:46:40 +0200
committerAndreas Kling <kling@serenityos.org>2021-05-03 21:14:06 +0200
commit78803ce384d62c40958cc8191a036307f5d8bc9f (patch)
treee8ae0a6a50f307e92a2074967417c1bc845e6d31 /Userland/Services/SymbolServer/ClientConnection.h
parent065040872f62f608374da6709502033720442882 (diff)
downloadserenity-78803ce384d62c40958cc8191a036307f5d8bc9f.zip
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.
Diffstat (limited to 'Userland/Services/SymbolServer/ClientConnection.h')
-rw-r--r--Userland/Services/SymbolServer/ClientConnection.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/SymbolServer/ClientConnection.h b/Userland/Services/SymbolServer/ClientConnection.h
index 900aaf3301..ea6132983c 100644
--- a/Userland/Services/SymbolServer/ClientConnection.h
+++ b/Userland/Services/SymbolServer/ClientConnection.h
@@ -17,7 +17,7 @@ namespace SymbolServer {
class ClientConnection final
: public IPC::ClientConnection<SymbolClientEndpoint, SymbolServerEndpoint>
- , public SymbolServerEndpoint {
+{
C_OBJECT(ClientConnection);
public: