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,9 +2,9 @@
#include "IpcChannel.h"
class RpcClient {
class ProxyMarshaller {
public:
explicit RpcClient(IpcChannel& ch) : channel(ch) {}
explicit ProxyMarshaller(IpcChannel& ch) : channel(ch) {}
template<typename Ret, typename... Args>
Ret call(const std::string& method, const Args&... args) {