25 lines
457 B
C++
25 lines
457 B
C++
![]() |
#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()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void InstrumentCoefficientForm::on_pushButtonExit_clicked()
|
||
|
{
|
||
|
|
||
|
}
|