mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-22 12:56:11 +00:00
25 lines
387 B
C++
25 lines
387 B
C++
#ifndef CUTTERTREEVIEW_H
|
|
#define CUTTERTREEVIEW_H
|
|
|
|
#include <memory>
|
|
#include <QAbstractItemView>
|
|
#include <QTreeView>
|
|
|
|
namespace Ui {
|
|
class CutterTreeView;
|
|
}
|
|
|
|
class CutterTreeView : public QTreeView
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit CutterTreeView(QWidget *parent = nullptr);
|
|
~CutterTreeView();
|
|
|
|
private:
|
|
std::unique_ptr<Ui::CutterTreeView> ui;
|
|
};
|
|
|
|
#endif //CUTTERTREEVIEW_H
|