2014-05-18 15:52:39 +00:00
|
|
|
#ifndef INCLUDE_PLUGINSDIALOG_H
|
|
|
|
#define INCLUDE_PLUGINSDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
#include "plugin/pluginmanager.h"
|
2018-03-20 12:49:21 +00:00
|
|
|
#include "export.h"
|
2014-05-18 15:52:39 +00:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class PluginsDialog;
|
|
|
|
}
|
|
|
|
|
2018-03-03 19:23:38 +00:00
|
|
|
class SDRGUI_API PluginsDialog : public QDialog {
|
2014-05-18 15:52:39 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit PluginsDialog(PluginManager* pluginManager, QWidget* parent = NULL);
|
|
|
|
~PluginsDialog();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::PluginsDialog* ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_PLUGINSDIALOG_H
|