mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-09 05:25:26 +00:00
20 lines
309 B
C++
20 lines
309 B
C++
|
|
#ifndef PLUGINSOPTIONSWIDGET_H
|
|
#define PLUGINSOPTIONSWIDGET_H
|
|
|
|
#include <QDialog>
|
|
|
|
class PreferencesDialog;
|
|
|
|
class PluginsOptionsWidget : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PluginsOptionsWidget(PreferencesDialog *dialog);
|
|
~PluginsOptionsWidget();
|
|
};
|
|
|
|
|
|
#endif //CUTTER_PLUGINSOPTIONSWIDGET_H
|