Files
BloomPatched/src/DebugServer/Gdb/DebugSession.cpp
2022-04-04 22:21:42 +01:00

16 lines
340 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))
, targetDescriptor(targetDescriptor)
{}
void DebugSession::terminate() {
}
}