Files
BloomPatched/src/DebugServers/GdbRsp/DebugSession.cpp

16 lines
374 B
C++
Raw Normal View History

2022-03-24 19:07:28 +00:00
#include "DebugSession.hpp"
#include "src/Logger/Logger.hpp"
namespace Bloom::DebugServers::Gdb
{
DebugSession::DebugSession(Connection&& connection, const TargetDescriptor& targetDescriptor)
: connection(std::move(connection))
2022-03-24 19:07:28 +00:00
, targetDescriptor(targetDescriptor)
{}
void DebugSession::terminate() {
this->connection.close();
}
}