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,
|
2022-12-26 21:27:19 +00:00
|
|
|
Services::TargetControllerService& targetControllerService
|
2022-09-15 00:33:01 +01:00
|
|
|
) override;
|
|
|
|
|
};
|
|
|
|
|
}
|