summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/qt_cmake_create/testdata/ui_project/widget.cpp
blob: 815d5f8c4bb53cb93e588ce50903d813e69fe976 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "widget.h"
#include "ui_widget.h"

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

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