14 lines
188 B
C++
14 lines
188 B
C++
#include "RelayServer.h"
|
|
|
|
class RelayServerApp : public wxApp
|
|
{
|
|
public:
|
|
bool OnInit() override;
|
|
};
|
|
|
|
bool RelayServerApp::OnInit()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
wxIMPLEMENT_APP(RelayServerApp); |