WinMedia/mainwindow.cpp

15 lines
222 B
C++
Raw Permalink Normal View History

2023-12-18 19:09:46 +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;
}