mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-22 12:56:11 +00:00
21 lines
288 B
C
21 lines
288 B
C
|
#pragma once
|
||
|
|
||
|
#include <QToolBar>
|
||
|
#include "Cutter.h"
|
||
|
|
||
|
class MainWindow;
|
||
|
|
||
|
class DebugToolbar : public QToolBar
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit DebugToolbar(MainWindow *main, QWidget *parent = nullptr);
|
||
|
|
||
|
private:
|
||
|
MainWindow *main;
|
||
|
|
||
|
private slots:
|
||
|
void continueUntilMain();
|
||
|
|
||
|
};
|