This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.
nettrans/net_server/net_server.h

21 lines
241 B
C
Raw Normal View History

2024-04-16 20:34:32 +08:00
#ifndef NET_SERVER_HEADER
#define NET_SERVER_HEADER
#include "net_com.h"
2024-04-16 21:34:06 +08:00
#include "net_pub.h"
2024-04-16 20:34:32 +08:00
class CNetServer
{
2024-04-16 20:34:32 +08:00
public:
2024-04-16 21:34:06 +08:00
CNetServer();
2024-04-16 20:34:32 +08:00
public:
void run();
2024-04-16 21:34:06 +08:00
2024-04-16 20:34:32 +08:00
private:
CCommunicate communi_{};
2024-04-16 21:34:06 +08:00
NetLog log_{};
2024-04-16 20:34:32 +08:00
};
#endif