mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 11:26:11 +00:00
bebc2ec36d
* Replace 0 and Q_NULLPTR with nullptr * Use c++11 foreach
26 lines
375 B
C++
26 lines
375 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 = nullptr);
|
|
~R2PluginsDialog();
|
|
|
|
private:
|
|
Ui::R2PluginsDialog *ui;
|
|
};
|
|
|
|
#endif // PLUGINSDIALOG_H
|