blob: f01a1b62248dafcb3c4781793c30a4b7e6fd70c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
class ClientConnection;
class ServerConnection {
public:
ServerConnection(int port);
ClientConnection accept_client_connection();
private:
int m_socket_fd;
};
|