mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 07:21:14 -05:00
23 lines
387 B
C++
23 lines
387 B
C++
#ifndef INCLUDE_PLUGINSDIALOG_H
|
|
#define INCLUDE_PLUGINSDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include "plugin/pluginmanager.h"
|
|
|
|
namespace Ui {
|
|
class PluginsDialog;
|
|
}
|
|
|
|
class PluginsDialog : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PluginsDialog(PluginManager* pluginManager, QWidget* parent = NULL);
|
|
~PluginsDialog();
|
|
|
|
private:
|
|
Ui::PluginsDialog* ui;
|
|
};
|
|
|
|
#endif // INCLUDE_PLUGINSDIALOG_H
|