| 312 | } |
| 313 | |
| 314 | void RPCFunctionBase::reset(bool free) |
| 315 | { |
| 316 | if (free) |
| 317 | { |
| 318 | delete p_in; |
| 319 | delete p_out; |
| 320 | p_in = p_out = NULL; |
| 321 | } |
| 322 | else |
| 323 | { |
| 324 | if (p_in) |
| 325 | p_in->Clear(); |
| 326 | if (p_out) |
| 327 | p_out->Clear(); |
| 328 | } |
| 329 | } |
| 330 | |
| 331 | bool RemoteFunctionBase::bind(color_ostream &out, RemoteClient *client, |
| 332 | const std::string &name, const std::string &plugin) |
no test coverage detected