TSI_Config/velocity.cpp

15 lines
201 B
C++
Raw Normal View History

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