mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-10-31 15:07:12 -04:00
24 lines
418 B
C++
24 lines
418 B
C++
#ifndef INCLUDE_PLUGINSDIALOG_H
|
|
#define INCLUDE_PLUGINSDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include "plugin/pluginmanager.h"
|
|
#include "export.h"
|
|
|
|
namespace Ui {
|
|
class PluginsDialog;
|
|
}
|
|
|
|
class SDRGUI_API PluginsDialog : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PluginsDialog(PluginManager* pluginManager, QWidget* parent = NULL);
|
|
~PluginsDialog();
|
|
|
|
private:
|
|
Ui::PluginsDialog* ui;
|
|
};
|
|
|
|
#endif // INCLUDE_PLUGINSDIALOG_H
|