2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2011-11-21 17:51:31 +00:00
|
|
|
|
2012-11-20 03:01:50 +00:00
|
|
|
#include "mainwindow.h"
|
2011-11-21 17:51:31 +00:00
|
|
|
|
2012-11-20 03:01:50 +00:00
|
|
|
#include <QApplication>
|
2011-11-21 17:51:31 +00:00
|
|
|
|
|
|
|
int main(int argc, char ** argv)
|
|
|
|
{
|
2012-11-20 03:01:50 +00:00
|
|
|
QApplication app(argc, argv);
|
2016-11-08 12:09:54 +00:00
|
|
|
QCoreApplication::setApplicationVersion(QLatin1String(QT_VERSION_STR));
|
2011-11-21 17:51:31 +00:00
|
|
|
|
2012-11-20 03:01:50 +00:00
|
|
|
MainWindow mainWindow;
|
|
|
|
mainWindow.show();
|
|
|
|
mainWindow.showQuickView();
|
2011-11-21 17:51:31 +00:00
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
}
|