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
254 B
C++

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