Files
checker_host/mainwindow.cpp

14 lines
211 B
C++
Raw Permalink Normal View History

2023-11-21 20:28:23 +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;
}