2024-08-05 17:07:51 +08:00
|
|
|
#include <iostream>
|
2024-08-06 09:07:21 +08:00
|
|
|
#include "MainFrame.h"
|
|
|
|
|
|
|
|
class CLinuxPack : public wxApp
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
bool OnInit() override
|
|
|
|
{
|
2024-10-23 16:56:38 +08:00
|
|
|
auto* frame = new CMainFrame(wxT("Linux二进制工具 v1.0.1"));
|
2024-08-06 09:07:21 +08:00
|
|
|
frame->Show(true);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
2024-08-05 17:07:51 +08:00
|
|
|
|
2024-08-05 17:31:26 +08:00
|
|
|
IMPLEMENT_APP(CLinuxPack);
|
|
|
|
DECLARE_APP(CLinuxPack);
|