Files
Simple-Protocol-Lib/include/sp/protocol/packet/PacketDispatcher.h
2025-02-04 19:11:03 +01:00

18 lines
349 B
C++

#pragma once
/**
* \file PacketDispatcher.h
* \brief File containing the sp::protocol::PacketDispatcher class
*/
#include <sp/protocol/Dispatcher.h>
#include <sp/protocol/packet/Packets.h>
namespace sp {
namespace protocol {
using PacketDispatcher = Dispatcher<PacketType, PacketVisitor, Packet>;
} // namespace protocol
} // namespace sp