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