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.
aboutdialog.h
Go to the documentation of this file.
1 #ifndef INCLUDE_ABOUTDIALOG_H
2 #define INCLUDE_ABOUTDIALOG_H
3 
4 #include <QDialog>
5 
6 #include "export.h"
7 
8 class MainSettings;
9 
10 namespace Ui {
11  class AboutDialog;
12 }
13 
14 class SDRGUI_API AboutDialog : public QDialog {
15  Q_OBJECT
16 
17 public:
18  explicit AboutDialog(const QString& apiHost, int apiPort, const MainSettings& mainSettings, QWidget* parent = 0);
19  ~AboutDialog();
20 
21 private:
22  Ui::AboutDialog* ui;
23 };
24 
25 #endif // INCLUDE_ABOUTDIALOG_H
Ui::AboutDialog * ui
Definition: aboutdialog.h:22
#define SDRGUI_API
Definition: export.h:52