testing-repository/Qt5/timer/mainwindow.cpp

16 lines
238 B
C++
Raw Normal View History

2023-08-28 18:28:49 +08:00
#include "mainwindow.h"
#include "./ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
MainWindow::~MainWindow()
{
delete ui;
}