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.
This commit is contained in:
Gunnar Beutner 2021-05-03 08:46:40 +02:00 committed by Andreas Kling
commit 78803ce384
Notes: sideshowbarker 2024-07-18 18:44:32 +09:00
20 changed files with 175 additions and 53 deletions

View file

@ -17,7 +17,7 @@ namespace ImageDecoder {
class ClientConnection final
: public IPC::ClientConnection<ImageDecoderClientEndpoint, ImageDecoderServerEndpoint>
, public ImageDecoderServerEndpoint {
{
C_OBJECT(ClientConnection);
public: