#include <iostream>
#include "MainFrame.h"

class CLinuxPack : public wxApp
{
public:
    bool OnInit() override
    {
        auto* frame = new CMainFrame(wxT("Linux二进制工具"));
        frame->Show(true);
        return true;
    }
};

IMPLEMENT_APP(CLinuxPack);
DECLARE_APP(CLinuxPack);