diff options
Diffstat (limited to 'Source/Core/DebuggerWX/src/CodeWindow.h')
| -rw-r--r-- | Source/Core/DebuggerWX/src/CodeWindow.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/DebuggerWX/src/CodeWindow.h b/Source/Core/DebuggerWX/src/CodeWindow.h index 0ad945abf1..81319e9d90 100644 --- a/Source/Core/DebuggerWX/src/CodeWindow.h +++ b/Source/Core/DebuggerWX/src/CodeWindow.h @@ -30,6 +30,8 @@ class CRegisterWindow;
class CLogWindow;
class CBreakPointWindow;
+class CMemoryWindow;
+class CCodeView;
class CCodeWindow
: public wxFrame
@@ -58,6 +60,7 @@ class CCodeWindow CLogWindow* m_logwindow;
CRegisterWindow* m_RegisterWindow;
CBreakPointWindow* m_BreakpointWindow;
+ CMemoryWindow* m_MemoryWindow;
CCodeView* codeview;
wxListBox* callstack;
@@ -81,6 +84,7 @@ class CCodeWindow void OnToggleRegisterWindow(wxCommandEvent& event);
void OnToggleBreakPointWindow(wxCommandEvent& event);
void OnToggleLogWindow(wxCommandEvent& event);
+ void OnToggleMemoryWindow(wxCommandEvent& event);
void OnHostMessage(wxCommandEvent& event);
void CreateMenu(const SCoreStartupParameter& _LocalCoreStartupParameter);
|
