| 99 | typedef command_result (*function_type)(color_ostream &out, const In *input); |
| 100 | |
| 101 | In *in() { return static_cast<In*>(RPCFunctionBase::in()); } |
| 102 | |
| 103 | VoidServerFunction(RPCService *owner, const char *name, int flags, function_type fptr) |
| 104 | : ServerFunctionBase(&In::default_instance(), &EmptyMessage::default_instance(), owner, name, flags), |