21 lines
333 B
C++
21 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);
|
|
};
|