~registry/dolphin-emu/triforce

« back to all changes in this revision

Viewing changes to Source/Core/DolphinWX/Src/Debugger/BreakpointDlg.h

  • Committer: Sérgio Benjamim
  • Date: 2015-02-13 05:54:40 UTC
  • Revision ID: sergio_br2@yahoo.com.br-20150213055440-ey2rt3sjpy27km78
Dolphin Triforce branch from code.google, commit b957980 (4.0-315).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright 2013 Dolphin Emulator Project
 
2
// Licensed under GPLv2
 
3
// Refer to the license.txt file included.
 
4
 
 
5
#ifndef __BREAKPOINTDLG_h__
 
6
#define __BREAKPOINTDLG_h__
 
7
 
 
8
 
 
9
#include <wx/wx.h>
 
10
 
 
11
class CBreakPointWindow;
 
12
 
 
13
class BreakPointDlg : public wxDialog
 
14
{
 
15
public:
 
16
        BreakPointDlg(CBreakPointWindow *_Parent);
 
17
        
 
18
private:
 
19
        CBreakPointWindow *Parent;
 
20
        wxTextCtrl *m_pEditAddress;
 
21
 
 
22
        void OnOK(wxCommandEvent& event);
 
23
 
 
24
        DECLARE_EVENT_TABLE();
 
25
};
 
26
 
 
27
#endif