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