公告板
版本库
filestore
活动
搜索
登录
张辉
/
ALLTEST_NT/BatterTester
常规机通用版
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
first commit
Ubuntu12.04.4_lts
2023-08-01
961efe36f62f7eba688d504ec0cdf3e1daa4dd74
[~whyczh/ALLTEST_NT/BatterTester.git]
/
SysSetForm
/
systype.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "systype.h"
#include "ui_systype.h"
SysType::SysType(QWidget *parent) :
QDialog(parent),
ui(new Ui::SysType)
{
ui->setupUi(this);
}
SysType::~SysType()
{
delete ui;
}