Новое начало

This commit is contained in:
2025-03-09 10:13:52 +05:00
parent 11ea3a8cd8
commit 4fbe63701f
11 changed files with 108 additions and 196 deletions

19
main.cpp Normal file
View File

@@ -0,0 +1,19 @@
#include <QCoreApplication>
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
// Set up code that uses the Qt event loop here.
// Call a.quit() or a.exit() to quit the application.
// A not very useful example would be including
// #include <QTimer>
// near the top of the file and calling
// QTimer::singleShot(5000, &a, &QCoreApplication::quit);
// which quits the application after 5 seconds.
// If you do not need a running Qt event loop, remove the call
// to a.exec() or use the Non-Qt Plain C++ Application template.
return a.exec();
}