8 lines
276 B
C++
8 lines
276 B
C++
|
|
#include "CommandPacket.hpp"
|
||
|
|
#include "src/DebugServers/GdbRsp/GdbRspDebugServer.hpp"
|
||
|
|
|
||
|
|
using namespace Bloom::DebugServers::Gdb::CommandPackets;
|
||
|
|
|
||
|
|
void CommandPacket::dispatchToHandler(Gdb::GdbRspDebugServer& gdbRspDebugServer) {
|
||
|
|
gdbRspDebugServer.handleGdbPacket(*this);
|
||
|
|
}
|