dolphin/Source/Core/DolphinWX/Debugger/BreakpointDlg.h
2014-02-23 00:27:27 +01:00

25 lines
438 B
C++

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