Files
BloomPatched/src/DebugServers/GdbRsp/CommandPackets/CommandPacket.cpp

8 lines
276 B
C++
Raw Normal View History

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