新增窗口
This commit is contained in:
16
kernelinformationdialog.cpp
Normal file
16
kernelinformationdialog.cpp
Normal file
@@ -0,0 +1,16 @@
|
||||
#include "kernelinformationdialog.h"
|
||||
#include "ui_kernelinformationdialog.h"
|
||||
|
||||
KernelInformationDialog::KernelInformationDialog(QJsonObject data, QWidget *parent) :
|
||||
QDialog(parent),
|
||||
ui(new Ui::KernelInformationDialog)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
// 解析数据
|
||||
|
||||
}
|
||||
|
||||
KernelInformationDialog::~KernelInformationDialog()
|
||||
{
|
||||
delete ui;
|
||||
}
|
||||
Reference in New Issue
Block a user