rename RpcClient to ProxyMarshaller
This commit is contained in:
@@ -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) {
|
||||
Reference in New Issue
Block a user