diff --git a/src/DebugServers/GdbRsp/ResponsePackets/Ok.hpp b/src/DebugServers/GdbRsp/ResponsePackets/OkResponsePacket.hpp similarity index 78% rename from src/DebugServers/GdbRsp/ResponsePackets/Ok.hpp rename to src/DebugServers/GdbRsp/ResponsePackets/OkResponsePacket.hpp index 7867a917..a2335387 100644 --- a/src/DebugServers/GdbRsp/ResponsePackets/Ok.hpp +++ b/src/DebugServers/GdbRsp/ResponsePackets/OkResponsePacket.hpp @@ -2,16 +2,12 @@ #include "ResponsePacket.hpp" -namespace Bloom::DebugServers::Gdb { - enum class Feature; -} - namespace Bloom::DebugServers::Gdb::ResponsePackets { /** * OK response packet expected by the GDB client, in response to certain commands. */ - class Ok: public ResponsePacket + class OkResponsePacket: public ResponsePacket { public: Ok() = default;