16 lines
343 B
C++
16 lines
343 B
C++
#include "DebugSession.hpp"
|
|
|
|
#include "src/Logger/Logger.hpp"
|
|
|
|
namespace Bloom::DebugServer::Gdb
|
|
{
|
|
DebugSession::DebugSession(Connection&& connection, const TargetDescriptor& targetDescriptor)
|
|
: connection(std::move(connection))
|
|
, gdbTargetDescriptor(targetDescriptor)
|
|
{}
|
|
|
|
void DebugSession::terminate() {
|
|
|
|
}
|
|
}
|