SDRAngel  4.11.5
Developer docs for <a href="https://github.com/f4exb/sdrangel">SDRangel<\a>, an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware.
pluginsdialog.h
Go to the documentation of this file.
1 #ifndef INCLUDE_PLUGINSDIALOG_H
2 #define INCLUDE_PLUGINSDIALOG_H
3 
4 #include <QDialog>
5 #include "plugin/pluginmanager.h"
6 #include "export.h"
7 
8 namespace Ui {
9  class PluginsDialog;
10 }
11 
12 class SDRGUI_API PluginsDialog : public QDialog {
13  Q_OBJECT
14 
15 public:
16  explicit PluginsDialog(PluginManager* pluginManager, QWidget* parent = NULL);
17  ~PluginsDialog();
18 
19 private:
20  Ui::PluginsDialog* ui;
21 };
22 
23 #endif // INCLUDE_PLUGINSDIALOG_H
#define SDRGUI_API
Definition: export.h:52
Ui::PluginsDialog * ui
Definition: pluginsdialog.h:20