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

18 lines
368 B
C++
Raw Normal View History

#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);
void handle(
DebugSession& debugSession,
Services::TargetControllerService& targetControllerService
) override;
};
}