16 lines
368 B
C++
16 lines
368 B
C++
|
|
#include "DebugSession.hpp"
|
||
|
|
|
||
|
|
#include "src/Logger/Logger.hpp"
|
||
|
|
|
||
|
|
namespace Bloom::DebugServers::Gdb
|
||
|
|
{
|
||
|
|
DebugSession::DebugSession(const Connection& connection, const TargetDescriptor& targetDescriptor)
|
||
|
|
: connection(connection)
|
||
|
|
, targetDescriptor(targetDescriptor)
|
||
|
|
{}
|
||
|
|
|
||
|
|
void DebugSession::terminate() {
|
||
|
|
this->connection.close();
|
||
|
|
}
|
||
|
|
}
|