LinuxPack/main.cpp

16 lines
295 B
C++
Raw Normal View History

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