mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-30 04:14:43 +01:00
17 lines
307 B
C++
17 lines
307 B
C++
#pragma once
|
|
#include <wx/listctrl.h>
|
|
#include "wx/aui/aui.h"
|
|
|
|
class DebuggerPanel : public wxPanel
|
|
{
|
|
wxAuiManager m_aui_mgr;
|
|
wxAuiNotebook* m_nb;
|
|
AppConnector m_app_connector;
|
|
|
|
public:
|
|
DebuggerPanel(wxWindow* parent);
|
|
~DebuggerPanel();
|
|
|
|
void UpdateUI();
|
|
void HandleCommand(wxCommandEvent& event);
|
|
}; |