mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-29 19:24:33 +00:00
17 lines
243 B
C++
17 lines
243 B
C++
|
#include "mainwindow.h"
|
||
|
#include <QApplication>
|
||
|
#include <QTimer>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
QApplication a(argc, argv);
|
||
|
MainWindow w;
|
||
|
w.show();
|
||
|
|
||
|
|
||
|
QTimer::singleShot(200, [&a](){ a.exit(0);});
|
||
|
|
||
|
|
||
|
return a.exec();
|
||
|
}
|