#pragma once #include #include "Monitor.hpp" namespace Bloom::DebugServer::Gdb::CommandPackets { /** * The HelpMonitorInfo class implements a structure for the "monitor help" GDB command. * * We just respond with some help info on the available "monitor" commands. */ class HelpMonitorInfo: public Monitor { public: explicit HelpMonitorInfo(Monitor&& monitorPacket); void handle( DebugSession& debugSession, TargetController::TargetControllerConsole& targetControllerConsole ) override; }; }