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

18 lines
357 B
C++

#pragma once
/**
* \file CommandDispatcher.h
* \brief File containing the sp::protocol::CommandDispatcher class
*/
#include <sp/protocol/Dispatcher.h>
#include <sp/protocol/command/Commands.h>
namespace sp {
namespace protocol {
using CommandDispatcher = Dispatcher<CommandType, CommandVisitor, Command>;
} // namespace protocol
} // namespace sp