#pragma once
/**
* \file PacketDispatcher.h
* \brief File containing the td::protocol::PacketDispatcher class
*/
#include
namespace td {
namespace protocol {
class PacketHandler;
using PacketDispatcher = Dispatcher;
} // namespace protocol
} // namespace td
|