rpcsx/rpcs3/Gui/Debugger.h

21 lines
330 B
C
Raw Normal View History

#pragma once
#include <wx/listctrl.h>
2013-11-19 11:30:58 +01:00
#include <wx/aui/aui.h>
class DbgEmuPanel;
class InterpreterDisAsmFrame;
class DebuggerPanel : public wxPanel
{
wxAuiManager m_aui_mgr;
DbgEmuPanel* m_dbg_panel;
InterpreterDisAsmFrame* m_disasm_frame;
public:
DebuggerPanel(wxWindow* parent);
~DebuggerPanel();
void UpdateUI();
2013-11-19 11:30:58 +01:00
};