Menu

[r13166]: / branches / release-17.12 / src / plugins / debuggergdb / editbreakpointdlg.h  Maximize  Restore  History

Download this file

29 lines (22 with data), 754 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
* This file is part of the Code::Blocks IDE and licensed under the GNU General Public License, version 3
* http://www.gnu.org/licenses/gpl-3.0.html
*/
#ifndef EDITBREAKPOINT_H
#define EDITBREAKPOINT_H
#include "scrollingdialog.h"
#include "debugger_defs.h"
class EditBreakpointDlg : public wxScrollingDialog
{
public:
EditBreakpointDlg(const DebuggerBreakpoint &breakpoint, wxWindow* parent = 0);
virtual ~EditBreakpointDlg();
const DebuggerBreakpoint& GetBreakpoint() const { return m_breakpoint; }
protected:
void OnUpdateUI(wxUpdateUIEvent& event);
void EndModal(int retCode);
DebuggerBreakpoint m_breakpoint;
private:
DECLARE_EVENT_TABLE()
};
#endif // EDITBREAKPOINT_H
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.