dolphin/Source/Core/DolphinWX/Debugger/BreakpointDlg.h
aldelaro5 00e03f1436 Update the breakpoint list after an add from the parent
Doing it from the add dialogs instead would prevent the call to these dialogs outside of a breakpointWindow which would be necessary for hotkeys binding.
2017-01-02 15:39:21 -05:00

20 lines
333 B
C++

// Copyright 2008 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include <wx/dialog.h>
class wxTextCtrl;
class BreakPointDlg : public wxDialog
{
public:
BreakPointDlg(wxWindow* _Parent);
private:
wxTextCtrl* m_pEditAddress;
void OnOK(wxCommandEvent& event);
};