2024-12-17 18:53:41 +08:00
|
|
|
#include "tachometer.h"
|
|
|
|
#include "ui_tachometer.h"
|
|
|
|
|
|
|
|
Tachometer::Tachometer(QWidget *parent)
|
|
|
|
: QDialog(parent)
|
|
|
|
, ui(new Ui::Tachometer)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2025-03-11 16:42:00 +08:00
|
|
|
ui->widget_body->setProperty("flag", "body");
|
2024-12-17 18:53:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Tachometer::~Tachometer()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|