15 lines
265 B
C++
Raw Normal View History

2025-05-05 23:22:43 +08:00
#include "UserInterface.h"
2025-05-08 21:13:36 +08:00
class RelayFileApp : public wxApp
2025-05-05 23:22:43 +08:00
{
2025-05-08 21:13:36 +08:00
public:
bool OnInit() override
{
auto* f = new UserInterface(wxT("RelayFile"));
f->Show();
return true;
}
};
IMPLEMENT_APP(RelayFileApp);
DECLARE_APP(RelayFileApp);