19 lines
338 B
C++
19 lines
338 B
C++
#pragma once
|
|
|
|
/**
|
|
* \file CommandDispatcher.h
|
|
* \brief File containing the td::protocol::CommandDispatcher class
|
|
*/
|
|
|
|
#include <td/protocol/Dispatcher.h>
|
|
|
|
namespace td {
|
|
namespace protocol {
|
|
|
|
class CommandHandler;
|
|
|
|
using CommandDispatcher = Dispatcher<CommandType, CommandHandler, Command>;
|
|
|
|
} // namespace protocol
|
|
} // namespace td
|