mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-03-29 09:35:13 +02:00
20 lines
280 B
C++
20 lines
280 B
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
#include <QVBoxLayout>
|
|
#include <QPushButton>
|
|
#include <QTreeWidget>
|
|
#include <QHeaderView>
|
|
|
|
class kernel_explorer : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
QTreeWidget* m_tree;
|
|
|
|
public:
|
|
kernel_explorer(QWidget* parent);
|
|
private Q_SLOTS:
|
|
void Update();
|
|
};
|