summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_QTBUG-63422/mywidget.cpp
blob: 0657edf2b2b921b3643b51f023f042a9ba5f6f40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2017 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Kevin Funk <kevin.funk@kdab.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include "mywidget.h"
#include "ui_mywidget.h"

MyWidget::MyWidget(QWidget *parent)
    : QWidget(parent)
{
    emit someSignal();
}

int main(int argc, char **argv)
{
    QApplication app(argc, argv);
    MyWidget myWidget;
    return 0;
}