Code::Blocks
SVN r11506
|
Command to continue execution and notify the debugger plugin. More...
#include <cdb_commands.h>
Public Member Functions | |
CdbCmd_Continue (DebuggerDriver *driver) | |
virtual void | Action () |
Executes an action. More... | |
Public Member Functions inherited from DebuggerContinueBaseCmd | |
DebuggerContinueBaseCmd (DebuggerDriver *driver, const wxString &cmd=_T(""), bool logToNormalLog=false) | |
bool | IsContinueCommand () const |
Tells if the command is a continue type command (continue, step, next and run to cursor commands should be marked as such) More... | |
Public Member Functions inherited from DebuggerCmd | |
DebuggerCmd (DebuggerDriver *driver, const wxString &cmd=_T(""), bool logToNormalLog=false) | |
virtual | ~DebuggerCmd () |
virtual void | ParseOutput (const wxString &output) |
Parses the command's output. More... | |
Additional Inherited Members | |
Public Attributes inherited from DebuggerCmd | |
wxString | m_Cmd |
the actual command More... | |
Protected Attributes inherited from DebuggerCmd | |
DebuggerDriver * | m_pDriver |
the driver More... | |
bool | m_LogToNormalLog |
if true, log to normal log, else the debug log More... | |
Command to continue execution and notify the debugger plugin.
Definition at line 227 of file cdb_commands.h.
|
inline |
|
inlinevirtual |
Executes an action.
This allows for "dummy" debugger commands to enter the commands queue. You can, for example, leave m_Cmd empty and just have Action() do something GUI-related (like the watches command does). Action() is called when the debugger command becomes current in the commands queue. It is called after sending m_Cmd to the debugger (if not empty).
Reimplemented from DebuggerCmd.
Definition at line 235 of file cdb_commands.h.
References DebuggerCmd::m_pDriver, and DebuggerDriver::NotifyDebuggeeContinued().