16 lines
213 B
C++
16 lines
213 B
C++
#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 |