mirror of
https://github.com/wf-group/wfview
synced 2026-08-13 17:32:59 -04:00
15 lines
270 B
C++
15 lines
270 B
C++
#include "satellitesetup.h"
|
|
#include "ui_satellitesetup.h"
|
|
#include "logcategories.h"
|
|
|
|
satelliteSetup::satelliteSetup(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::satelliteSetup)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
satelliteSetup::~satelliteSetup()
|
|
{
|
|
delete ui;
|
|
}
|