mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-21 12:26:11 +00:00
23 lines
360 B
C
23 lines
360 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();
|
||
|
|
||
|
private:
|
||
|
DisassemblerGraphView *graphView;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // GRAPHWIDGET_H
|