2018-03-09 15:05:40 +00:00
|
|
|
#ifndef PLUGINSDIALOG_H
|
|
|
|
#define PLUGINSDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
#include <QAbstractTableModel>
|
|
|
|
|
2019-02-22 16:50:45 +00:00
|
|
|
#include "core/Cutter.h"
|
2018-03-09 15:05:40 +00:00
|
|
|
|
2018-03-21 20:32:32 +00:00
|
|
|
namespace Ui {
|
|
|
|
class R2PluginsDialog;
|
2018-03-09 15:05:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class R2PluginsDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-05-04 07:58:32 +00:00
|
|
|
explicit R2PluginsDialog(QWidget *parent = nullptr);
|
2018-03-09 15:05:40 +00:00
|
|
|
~R2PluginsDialog();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::R2PluginsDialog *ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PLUGINSDIALOG_H
|