公告板
版本库
filestore
活动
搜索
登录
admin
/
audit_system
资产
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
0524
wumu
2023-05-24
1a2c651d0490bc12c155a655b22949286b028061
[~admin/audit_system.git]
/
internal_system_v1
/
problemcount.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "problemcount.h"
#include "ui_problemcount.h"
ProblemCount::ProblemCount(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::ProblemCount)
{
ui->setupUi(this);
}
ProblemCount::~ProblemCount()
{
delete ui;
}