2025-04-09 05:58:05 +00:00
|
|
|
#include "instrumentcoefficientform.h"
|
|
|
|
#include "ui_instrumentcoefficientform.h"
|
|
|
|
|
|
|
|
InstrumentCoefficientForm::InstrumentCoefficientForm(QWidget *parent) :
|
|
|
|
QWidget(parent),
|
|
|
|
ui(new Ui::InstrumentCoefficientForm)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
InstrumentCoefficientForm::~InstrumentCoefficientForm()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
void InstrumentCoefficientForm::on_pushButtonCalculate_clicked()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2025-04-11 09:17:37 +00:00
|
|
|
void InstrumentCoefficientForm::on_pushButtonCancel_clicked()
|
|
|
|
{
|
|
|
|
hide();
|
|
|
|
}
|