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
2024-04-16 21:34:06 +08:00

20 lines
241 B
C++

#ifndef NET_SERVER_HEADER
#define NET_SERVER_HEADER
#include "net_com.h"
#include "net_pub.h"
class CNetServer {
public:
CNetServer();
public:
void run();
private:
CCommunicate communi_{};
NetLog log_{};
};
#endif