dolphin/Source/Core/DolphinWX/Debugger/BreakpointDlg.h
2013-12-31 14:03:19 -05:00

27 lines
446 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