cutter/src/widgets/GraphWidget.h

23 lines
360 B
C
Raw Normal View History

#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