Files
test_ta1_usb_01/main.cpp
2025-08-06 21:51:47 +03:00

15 lines
243 B
C++

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