summaryrefslogtreecommitdiff
path: root/xmake/templates/c++/qt.widgetapp/project/src/mainwindow.cpp
blob: 57ab27f7dcc80600afdc50f155b60021a83b631b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "mainwindow.h"
#include "ui_mainwindow.h"

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

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