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