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

20 lines
481 B
C++
Raw Normal View History

#pragma once
#include "CommandPacket.hpp"
namespace 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,
const TargetDescriptor& gdbTargetDescriptor,
const Targets::TargetDescriptor& targetDescriptor,
Services::TargetControllerService& targetControllerService
) override;
};
}