| 115 | } |
| 116 | |
| 117 | RPCService::~RPCService() |
| 118 | { |
| 119 | if (holder) |
| 120 | holder->detach_connection(this); |
| 121 | |
| 122 | for (size_t i = 0; i < functions.size(); i++) |
| 123 | delete functions[i]; |
| 124 | } |
| 125 | |
| 126 | ServerFunctionBase *RPCService::getFunction(const std::string &name) |
| 127 | { |
nothing calls this directly
no test coverage detected