mirror of
https://github.com/wf-group/wfview
synced 2026-08-13 17:32:59 -04:00
16 lines
329 B
C++
16 lines
329 B
C++
#include "transceiveradjustments.h"
|
|
#include "ui_transceiveradjustments.h"
|
|
|
|
transceiverAdjustments::transceiverAdjustments(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::transceiverAdjustments)
|
|
{
|
|
ui->setupUi(this);
|
|
// request level updates
|
|
|
|
}
|
|
|
|
transceiverAdjustments::~transceiverAdjustments()
|
|
{
|
|
delete ui;
|
|
}
|