mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-04 07:51:14 -05:00
15 lines
214 B
C++
15 lines
214 B
C++
|
#include "gui/aboutdialog.h"
|
||
|
#include "ui_aboutdialog.h"
|
||
|
|
||
|
AboutDialog::AboutDialog(QWidget* parent) :
|
||
|
QDialog(parent),
|
||
|
ui(new Ui::AboutDialog)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|
||
|
|
||
|
AboutDialog::~AboutDialog()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|