TSI_Config/velocity.cpp
2024-12-18 17:14:41 +08:00

15 lines
201 B
C++

#include "Velocity.h"
#include "ui_Velocity.h"
Velocity::Velocity(QWidget *parent) :
QWidget(parent),
ui(new Ui::Velocity)
{
ui->setupUi(this);
}
Velocity::~Velocity()
{
delete ui;
}