mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01: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();
|
|
};
|