| 35 | CommandHandler(void) {} |
| 36 | virtual ~CommandHandler(void) {} |
| 37 | void Execute(const T& executor, const Command& command, Response* response) { |
| 38 | this->ExecuteInternal(executor, |
| 39 | command.command_parameters(), |
| 40 | response); |
| 41 | } |
| 42 | |
| 43 | protected: |
| 44 | virtual void ExecuteInternal(const T& executor, |
nothing calls this directly
no test coverage detected