| 16 | RpcProtocolServer12::RpcProtocolServer12(IProcedureInvokationHandler &handler) : rpc1(handler), rpc2(handler) {} |
| 17 | |
| 18 | void RpcProtocolServer12::AddProcedure(const Procedure &procedure) { |
| 19 | this->rpc1.AddProcedure(procedure); |
| 20 | this->rpc2.AddProcedure(procedure); |
| 21 | } |
| 22 | |
| 23 | void RpcProtocolServer12::HandleRequest(const std::string &request, std::string &retValue) { |
| 24 | Json::Value req; |
no outgoing calls
no test coverage detected