2013-04-18 03:43:35 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
#ifndef __BREAKPOINTDLG_h__
|
|
|
|
#define __BREAKPOINTDLG_h__
|
|
|
|
|
|
|
|
|
|
|
|
#include <wx/wx.h>
|
2011-02-27 23:03:08 +00:00
|
|
|
|
|
|
|
class CBreakPointWindow;
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
class BreakPointDlg : public wxDialog
|
|
|
|
{
|
2011-02-27 23:03:08 +00:00
|
|
|
public:
|
|
|
|
BreakPointDlg(CBreakPointWindow *_Parent);
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2011-02-27 23:03:08 +00:00
|
|
|
private:
|
|
|
|
CBreakPointWindow *Parent;
|
|
|
|
wxTextCtrl *m_pEditAddress;
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2011-03-17 04:26:01 +00:00
|
|
|
void OnOK(wxCommandEvent& event);
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2011-02-27 23:03:08 +00:00
|
|
|
DECLARE_EVENT_TABLE();
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|