28 lines
447 B
C++
28 lines
447 B
C++
// Copyright 2013 Dolphin Emulator Project
|
|
// Licensed under GPLv2
|
|
// Refer to the license.txt file included.
|
|
|
|
#ifndef __BREAKPOINTDLG_h__
|
|
#define __BREAKPOINTDLG_h__
|
|
|
|
|
|
#include <wx/wx.h>
|
|
|
|
class CBreakPointWindow;
|
|
|
|
class BreakPointDlg : public wxDialog
|
|
{
|
|
public:
|
|
BreakPointDlg(CBreakPointWindow *_Parent);
|
|
|
|
private:
|
|
CBreakPointWindow *Parent;
|
|
wxTextCtrl *m_pEditAddress;
|
|
|
|
void OnOK(wxCommandEvent& event);
|
|
|
|
DECLARE_EVENT_TABLE();
|
|
};
|
|
|
|
#endif
|