2014-07-26 07:51:45 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
2015-11-26 08:37:53 +01:00
|
|
|
class KernelExplorer : public wxDialog
|
2014-07-26 07:51:45 +02:00
|
|
|
{
|
|
|
|
|
wxTreeCtrl* m_tree;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
KernelExplorer(wxWindow* parent);
|
|
|
|
|
void Update();
|
|
|
|
|
|
|
|
|
|
void OnRefresh(wxCommandEvent& WXUNUSED(event));
|
|
|
|
|
};
|