2024-05-17 10:36:23 +08:00
|
|
|
#include "BoostLog.h"
|
|
|
|
#include "Widget.h"
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QFont>
|
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
boost::log::initialize("logs/app");
|
|
|
|
|
|
|
|
QApplication a(argc, argv);
|
|
|
|
QFont font;
|
|
|
|
font.setPointSize(16);
|
|
|
|
a.setFont(font);
|
|
|
|
Widget w;
|
2024-10-25 17:18:09 +08:00
|
|
|
w.setWindowTitle("掌静脉模组升级工具");
|
2024-05-17 10:36:23 +08:00
|
|
|
w.setMinimumWidth(520);
|
|
|
|
w.setMinimumHeight(100);
|
|
|
|
w.show();
|
|
|
|
|
|
|
|
return a.exec();
|
|
|
|
}
|