18 lines
349 B
C++
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
|