mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
18 lines
484 B
C++
18 lines
484 B
C++
#pragma once
|
|
|
|
#include <QtWidgets/QWidget>
|
|
#include "ui_SeerBreakpointsOptionsBarWidget.h"
|
|
|
|
class SeerBreakpointsOptionsBarWidget : public QWidget, protected Ui::SeerBreakpointsOptionsBarWidgetForm {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SeerBreakpointsOptionsBarWidget (QWidget* parent = 0);
|
|
~SeerBreakpointsOptionsBarWidget ();
|
|
|
|
QToolButton* breakpointsLoadToolButton ();
|
|
QToolButton* breakpointsSaveToolButton ();
|
|
};
|
|
|