Files
bcrt/main.cpp
2025-09-16 12:08:45 +03:00

19 lines
387 B
C++

#include "mainwindow.h"
//#include "testinfo.h"
//#include "testcmd.h"
//#include "teststat.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
//QTest::qExec(new testInfo, argc, argv);
//QTest::qExec(new testcmdwrd, argc, argv);
//QTest::qExec(new teststatwrd, argc, argv);
return a.exec();
}