#include "RelayServer.h" class RelayServerApp : public wxApp { public: bool OnInit() override; }; bool RelayServerApp::OnInit() { return true; } wxIMPLEMENT_APP(RelayServerApp);