This commit is contained in:
2026-01-12 15:27:12 +03:00
parent 6d40c45135
commit 36527a9cb5
44 changed files with 148 additions and 146 deletions

11
ProgramServerMTD/main.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show(); //Закоментировать, если нужно, чтобы по-умолчанию было свернуто в трее!
return a.exec();
}