18 lines
368 B
C++
18 lines
368 B
C++
#pragma once
|
|
|
|
#include "CommandPacket.hpp"
|
|
|
|
namespace Bloom::DebugServer::Gdb::CommandPackets
|
|
{
|
|
class Detach: public CommandPacket
|
|
{
|
|
public:
|
|
explicit Detach(const RawPacket& rawPacket);
|
|
|
|
void handle(
|
|
DebugSession& debugSession,
|
|
Services::TargetControllerService& targetControllerService
|
|
) override;
|
|
};
|
|
}
|