19 lines
331 B
C++
19 lines
331 B
C++
#pragma once
|
|
|
|
/**
|
|
* \file PacketDispatcher.h
|
|
* \brief File containing the td::protocol::PacketDispatcher class
|
|
*/
|
|
|
|
#include <td/protocol/Dispatcher.h>
|
|
|
|
namespace td {
|
|
namespace protocol {
|
|
|
|
class PacketHandler;
|
|
|
|
using PacketDispatcher = Dispatcher<PacketType, PacketHandler, Packet>;
|
|
|
|
} // namespace protocol
|
|
} // namespace td
|