Renamed GdbRsp directory to Gdb
This commit is contained in:
15
src/DebugServer/Gdb/DebugSession.cpp
Normal file
15
src/DebugServer/Gdb/DebugSession.cpp
Normal file
@@ -0,0 +1,15 @@
|
||||
#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() {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user