2024-12-18 17:14:41 +08:00
|
|
|
#include "Setpoint.h"
|
|
|
|
#include "ui_Setpoint.h"
|
2024-12-17 18:53:41 +08:00
|
|
|
|
2024-12-18 17:14:41 +08:00
|
|
|
Setpoint::Setpoint(QWidget *parent) :
|
2024-12-17 18:53:41 +08:00
|
|
|
QWidget(parent),
|
2024-12-18 17:14:41 +08:00
|
|
|
ui(new Ui::Setpoint)
|
2024-12-17 18:53:41 +08:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
}
|
|
|
|
|
2024-12-18 17:14:41 +08:00
|
|
|
Setpoint::~Setpoint()
|
2024-12-17 18:53:41 +08:00
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|