2021-04-04 21:04:12 +01:00
|
|
|
#include "CommandPacket.hpp"
|
2021-10-02 17:39:27 +01:00
|
|
|
|
2021-04-04 21:04:12 +01:00
|
|
|
#include "src/DebugServers/GdbRsp/GdbRspDebugServer.hpp"
|
|
|
|
|
|
|
|
|
|
using namespace Bloom::DebugServers::Gdb::CommandPackets;
|
|
|
|
|
|
|
|
|
|
void CommandPacket::dispatchToHandler(Gdb::GdbRspDebugServer& gdbRspDebugServer) {
|
|
|
|
|
gdbRspDebugServer.handleGdbPacket(*this);
|
2021-10-02 17:39:27 +01:00
|
|
|
}
|