| 272 | class ProxyBase { |
| 273 | public: |
| 274 | ProxyBase(RpcHandleRef rpc_handle_ref, std::string_view rpc_type, std::string_view service_name) |
| 275 | : rpc_handle_ref_(rpc_handle_ref), rpc_type_(rpc_type), service_name_(service_name) {} |
| 276 | virtual ~ProxyBase() = default; |
| 277 | |
| 278 | ProxyBase(const ProxyBase&) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected