mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 21:17:44 +00:00
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:
parent
065040872f
commit
78803ce384
20 changed files with 175 additions and 53 deletions
|
@ -20,8 +20,7 @@ namespace LanguageServers {
|
|||
|
||||
class ClientConnection
|
||||
: public IPC::ClientConnection<LanguageClientEndpoint, LanguageServerEndpoint>
|
||||
, public LanguageServerEndpoint {
|
||||
|
||||
{
|
||||
public:
|
||||
explicit ClientConnection(NonnullRefPtr<Core::LocalSocket>, int client_id);
|
||||
~ClientConnection() override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue