TSI_Config/tachometer.cpp
2024-12-17 18:53:41 +08:00

15 lines
216 B
C++

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