| 1 | // Copyright (C) 2021 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 <QApplication> |
| 5 | |
| 6 | #include "mainwindow.h" |
| 7 | |
| 8 | int main(int argc, char *argv[]) |
| 9 | { |
| 10 | QApplication app(argc, argv); |
| 11 | MainWindow window(nullptr); |
| 12 | window.show(); |
| 13 | |
| 14 | return app.exec(); |
| 15 | } |
| 16 |
