2022-09-15 00:33:01 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "CommandPacket.hpp"
|
|
|
|
|
|
|
|
|
|
namespace Bloom::DebugServer::Gdb::CommandPackets
|
|
|
|
|
{
|
|
|
|
|
class Detach: public CommandPacket
|
|
|
|
|
{
|
|
|
|
|
public:
|
2022-10-01 21:01:37 +01:00
|
|
|
explicit Detach(const RawPacket& rawPacket);
|
2022-09-15 00:33:01 +01:00
|
|
|
|
|
|
|
|
void handle(
|
|
|
|
|
DebugSession& debugSession,
|
|
|
|
|
TargetController::TargetControllerConsole& targetControllerConsole
|
|
|
|
|
) override;
|
|
|
|
|
};
|
|
|
|
|
}
|