2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 21:43:35 -06:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2014-02-22 15:36:30 -07:00
|
|
|
#include <wx/dialog.h>
|
2011-02-27 16:03:08 -07:00
|
|
|
|
|
|
|
class CBreakPointWindow;
|
2014-02-22 15:36:30 -07:00
|
|
|
class wxTextCtrl;
|
2008-12-07 21:46:09 -07:00
|
|
|
|
|
|
|
class BreakPointDlg : public wxDialog
|
|
|
|
{
|
2011-02-27 16:03:08 -07:00
|
|
|
public:
|
|
|
|
BreakPointDlg(CBreakPointWindow *_Parent);
|
2013-10-28 23:23:17 -06:00
|
|
|
|
2011-02-27 16:03:08 -07:00
|
|
|
private:
|
|
|
|
CBreakPointWindow *Parent;
|
|
|
|
wxTextCtrl *m_pEditAddress;
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2011-03-16 22:26:01 -06:00
|
|
|
void OnOK(wxCommandEvent& event);
|
2008-12-07 21:46:09 -07:00
|
|
|
};
|