Qt_Performance_Benchmark/Qt_Performance_Benchmark/mainwindow.cpp

16 lines
221 B
C++
Raw Normal View History

2020-10-09 11:48:56 +02: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;
}