新增窗口

This commit is contained in:
2024-05-16 22:38:53 +08:00
parent 30372e2c32
commit 19e4ec2930
8 changed files with 152 additions and 0 deletions

23
kernelinformationdialog.h Normal file
View File

@@ -0,0 +1,23 @@
#ifndef KERNELINFORMATIONDIALOG_H
#define KERNELINFORMATIONDIALOG_H
#include <QDialog>
#include <QJsonObject>
namespace Ui {
class KernelInformationDialog;
}
class KernelInformationDialog : public QDialog
{
Q_OBJECT
public:
explicit KernelInformationDialog(QJsonObject data, QWidget *parent = nullptr);
~KernelInformationDialog();
private:
Ui::KernelInformationDialog *ui;
};
#endif // KERNELINFORMATIONDIALOG_H