4
1
mirror of https://github.com/QuasarApp/CQtDeployer.git synced 2025-04-28 18:54:33 +00:00
2019-04-06 18:12:50 +03:00

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();
}