16 lines
302 B
C++
16 lines
302 B
C++
#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;
|
|
}
|
|
};
|
|
|
|
IMPLEMENT_APP(CLinuxPack);
|
|
DECLARE_APP(CLinuxPack); |