mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2025-01-23 12:24:31 +08:00
17 lines
322 B
C++
17 lines
322 B
C++
|
// Copyright (C) 2016 The Qt Company Ltd.
|
||
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
||
|
|
||
|
#include <QApplication>
|
||
|
#include "dialog.h"
|
||
|
|
||
|
//! [0]
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
QApplication application(argc, argv);
|
||
|
Dialog dialog;
|
||
|
dialog.show();
|
||
|
return application.exec();
|
||
|
}
|
||
|
//! [0]
|
||
|
|