LinuxPack/main.cpp

16 lines
302 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
{
auto* frame = new CMainFrame(wxT("Linux二进制工具 v1.0.1"));
frame->Show(true);
return true;
}
};
2024-08-05 17:07:51 +08:00
IMPLEMENT_APP(CLinuxPack);
DECLARE_APP(CLinuxPack);