gtransm/server/server.h

16 lines
213 B
C
Raw Normal View History

#ifndef SERVER_H
#define SERVER_H
#include <server-core.h>
#include <memory>
class CServer : public wxApp
{
public:
bool OnInit() override;
private:
std::unique_ptr<CServerCore> server_core_;
};
#endif