gxde-kernel-manager/kernelinformationdialog.h
2024-05-16 22:38:53 +08:00

24 lines
434 B
C++

#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