#pragma once #include #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); };