dolphin/Source/Core/DolphinWX/Debugger/BreakpointDlg.h

23 lines
392 B
C
Raw Normal View History

// Copyright 2008 Dolphin Emulator Project
2015-05-18 01:08:10 +02:00
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
2014-02-22 23:36:30 +01:00
#include <wx/dialog.h>
class CBreakPointWindow;
2014-02-22 23:36:30 +01:00
class wxTextCtrl;
class BreakPointDlg : public wxDialog
{
public:
BreakPointDlg(CBreakPointWindow *_Parent);
private:
CBreakPointWindow *Parent;
wxTextCtrl *m_pEditAddress;
void OnOK(wxCommandEvent& event);
};