20 lines
297 B
C
20 lines
297 B
C
|
#ifndef MAIN_UI
|
||
|
#define MAIN_UI
|
||
|
|
||
|
#include <wx/wx.h>
|
||
|
#define USE_DYNAMIC_CONNECT
|
||
|
|
||
|
class CLinuxPack : public wxApp
|
||
|
{
|
||
|
public:
|
||
|
bool OnInit() override;
|
||
|
};
|
||
|
|
||
|
class CMainFrame : public wxFrame
|
||
|
{
|
||
|
public:
|
||
|
explicit CMainFrame(const wxString& title);
|
||
|
void OnQuit(wxCommandEvent& event);
|
||
|
};
|
||
|
|
||
|
#endif
|