X-Git-Url: http://git.hcoop.net/clinton/Virtual-Jaguar-Rx.git/blobdiff_plain/8646ea4492bcd361b181f3036071a7d34052e3b1..cbd79f6681578e8e8086cd175b1fbe5301a0b43d:/src/debugger/NewFnctBreakpointWin.h diff --git a/src/debugger/NewFnctBreakpointWin.h b/src/debugger/NewFnctBreakpointWin.h index cb44aa9..ab79184 100644 --- a/src/debugger/NewFnctBreakpointWin.h +++ b/src/debugger/NewFnctBreakpointWin.h @@ -9,6 +9,7 @@ #include #include +#include "debugger/BreakpointsWin.h" class NewFnctBreakpointWindow: public QWidget { @@ -16,6 +17,8 @@ class NewFnctBreakpointWindow: public QWidget public: NewFnctBreakpointWindow(QWidget * parent = 0); + void SetFnctBreakpointWin(BreakpointsWindow* BpW); + ~NewFnctBreakpointWindow(); public slots: @@ -24,11 +27,13 @@ class NewFnctBreakpointWindow: public QWidget protected slots: void AddBreakpointAddress(void); + void SelectBreakpointAddress(void); private: QVBoxLayout *layout; QLineEdit *address; QPushButton *add; + BreakpointsWindow* BPWin; }; #endif // __NEWFNCTBREAKPOINTWIN_H__