mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-22 21:06:10 +00:00
20 lines
349 B
C++
20 lines
349 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;
|
|
};
|
|
|
|
#endif // GRAPHWIDGET_H
|