1 | // Copyright (C) 2016 The Qt Company Ltd. |
---|---|
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 |
3 | |
4 | #include "mainwindow.h" |
5 | |
6 | #include <QApplication> |
7 | |
8 | int main(int argc, char ** argv) |
9 | { |
10 | QApplication app(argc, argv); |
11 | QCoreApplication::setApplicationVersion(QLatin1String(QT_VERSION_STR)); |
12 | |
13 | MainWindow mainWindow; |
14 | mainWindow.show(); |
15 | mainWindow.showQuickView(); |
16 | |
17 | return app.exec(); |
18 | } |
19 |