rename RpcClient to ProxyMarshaller

This commit is contained in:
Сергей Маринкевич
2025-12-02 19:02:00 +07:00
parent 7495f540d2
commit 4433568545
3 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -1,12 +1,12 @@
#include "{{ cls.name }}.proxy.h"
#include "rpc/RpcClient.h"
#include "rpc/ProxyMarshaller.h"
class {{ cls.name }}Proxy::Impl {
public:
explicit Impl(IpcChannel& ch)
: client(ch) {}
RpcClient client;
ProxyMarshaller client;
};
{{ cls.name }}Proxy::{{ cls.name }}Proxy(IpcChannel& ch)