公告板
版本库
filestore
活动
搜索
登录
admin
/
天开景运_0405_250719
25-04-05 AI项目
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
Merge branch 'master' of ssh://115.28.86.8:29418/~admin/天开景运_0405_250719
lpt
2025-07-30
7c0f9b58ab5c7ae5f157c4d1a55e31c4d911c021
[~admin/天开景运_0405_250719.git]
/
Server
/
杜国庆
/
code
/
BackgroundMon
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "mainwindow.h"
#include <QApplication>
#include <QMessageBox>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
// 直接启动程序,不检查权限(Windows不需要root权限)
MainWindow w;
w.show();
return a.exec();
}