TSI_Config/tachometer.cpp
2025-03-11 16:42:00 +08:00

16 lines
266 B
C++

#include "tachometer.h"
#include "ui_tachometer.h"
Tachometer::Tachometer(QWidget *parent)
: QDialog(parent)
, ui(new Ui::Tachometer)
{
ui->setupUi(this);
ui->widget_body->setProperty("flag", "body");
}
Tachometer::~Tachometer()
{
delete ui;
}