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