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