summaryrefslogtreecommitdiff
path: root/xmake/repository/templates/c++/qt/widgetapp_static/src/mainwindow.cpp
blob: c9c6a0d983c6aff3572d28bd1e8329474992c0fb (plain)
1
2
3
4
5
6
7
8
9
10
#include "mainwindow.h"
#include "ui_mainwindow.h"

MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow) {
    ui->setupUi(this);
}

MainWindow::~MainWindow() {
    delete ui;
}