| 81 | typedef command_result (*function_type)(color_ostream &out, const In *input, Out *output); |
| 82 | |
| 83 | In *in() { return static_cast<In*>(RPCFunctionBase::in()); } |
| 84 | Out *out() { return static_cast<Out*>(RPCFunctionBase::out()); } |
| 85 | |
| 86 | ServerFunction(RPCService *owner, const char *name, int flags, function_type fptr) |