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