ceshi/mainwindow.cpp

16 lines
238 B
C++
Raw Permalink Normal View History

2024-08-28 05:37:11 +00: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;
}