2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
#include "mainwindow.h"
|
|
|
|
|
|
|
|
#include <QApplication>
|
|
|
|
|
2012-11-23 08:31:03 +00:00
|
|
|
int main(int argc, char *argv[])
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
Q_INIT_RESOURCE(images);
|
|
|
|
|
|
|
|
QApplication app(argc, argv);
|
|
|
|
app.setAttribute(Qt::AA_DontCreateNativeWidgetSiblings);
|
|
|
|
|
|
|
|
MainWindow window;
|
2013-03-14 23:42:15 +00:00
|
|
|
window.show();
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
}
|