公告板
版本库
filestore
活动
搜索
登录
admin
/
c++
派生自
development/c++
概况
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
将算法的进程以多进程方式启动
chenshijun
2019-03-15
ed7186f89434ff9a19a5abdce8252d69460677ee
[~admin/c++.git]
/
QiaoJiaSystem
/
VideoServer
/
QiaoJia
/
widget.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "widget.h"
#include "ui_widget.h"
Widget::Widget(QWidget *parent) :
QWidget(parent),
ui(new Ui::Widget)
{
ui->setupUi(this);
}
Widget::~Widget()
{
delete ui;
}