SL100_FactoryTestTool/FactoryTestTool/SourceCode/main.cpp

17 lines
376 B
C++
Raw Normal View History

2024-08-01 01:17:17 +00:00
#include "./Widget/MainWidget.h"
#include <QApplication>
2024-08-06 12:32:02 +00:00
#include <windows.h>
#include <iostream>
#include <QDebug>
2024-08-01 01:17:17 +00:00
int main(int argc, char* argv[]) {
2024-08-06 12:32:02 +00:00
QApplication app(argc, argv);
QIcon appIcon("./app_icon.ico");
app.setWindowIcon(appIcon);
2024-08-01 01:17:17 +00:00
MainWidget w;
w.show();
2024-08-06 12:32:02 +00:00
return app.exec();
2024-08-01 01:17:17 +00:00
}