start with main()

This commit is contained in:
Gerhard Hoffmann 2024-02-28 16:08:04 +01:00
parent cd3a71bac3
commit 7a67fd5662

8
main.cpp Normal file
View File

@ -0,0 +1,8 @@
#include <QtGlobal>
int main(int argc, char **argv) {
Q_UNUSED(argc);
Q_UNUSED(argv);
return 0;
}