25 lines
594 B
C++
25 lines
594 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
#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;
|
|
};
|
|
}
|