mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-23 05:16:11 +00:00
26 lines
442 B
C++
26 lines
442 B
C++
#ifndef GRAPHWIDGET_H
|
|
#define GRAPHWIDGET_H
|
|
|
|
#include "CutterDockWidget.h"
|
|
|
|
class MainWindow;
|
|
class DisassemblerGraphView;
|
|
|
|
class GraphWidget : public CutterDockWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit GraphWidget(MainWindow *main, QAction *action = nullptr);
|
|
~GraphWidget();
|
|
DisassemblerGraphView *graphView;
|
|
|
|
private:
|
|
void closeEvent(QCloseEvent *event) override;
|
|
|
|
signals:
|
|
void graphClose();
|
|
};
|
|
|
|
#endif // GRAPHWIDGET_H
|