mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-31 16:47:26 +00:00
ab27e09b91
Sometimes it is not necessary to include the whole Cutter.h file Hence, it's been splitted so you can include only what you require E.g. #include "core/CutterCommon.h" to have access to the common types
26 lines
380 B
C++
26 lines
380 B
C++
#ifndef PLUGINSDIALOG_H
|
|
#define PLUGINSDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QAbstractTableModel>
|
|
|
|
#include "core/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
|