Files
BloomPatched/src/DebugServer/Gdb/CommandPackets/Detach.hpp

18 lines
380 B
C++
Raw Normal View History

#pragma once
#include "CommandPacket.hpp"
namespace Bloom::DebugServer::Gdb::CommandPackets
{
class Detach: public CommandPacket
{
public:
explicit Detach(const RawPacketType& rawPacket);
void handle(
DebugSession& debugSession,
TargetController::TargetControllerConsole& targetControllerConsole
) override;
};
}