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