mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 11:26:11 +00:00
27 lines
373 B
C
27 lines
373 B
C
|
#ifndef PLUGINSDIALOG_H
|
||
|
#define PLUGINSDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include <QAbstractTableModel>
|
||
|
|
||
|
#include "Cutter.h"
|
||
|
|
||
|
namespace Ui
|
||
|
{
|
||
|
class R2PluginsDialog;
|
||
|
}
|
||
|
|
||
|
class R2PluginsDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit R2PluginsDialog(QWidget *parent = 0);
|
||
|
~R2PluginsDialog();
|
||
|
|
||
|
private:
|
||
|
Ui::R2PluginsDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // PLUGINSDIALOG_H
|