blob: 8f0af70135438e359d1b6fde70f869b66c104bb1 (
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() const;
private:
int m_socket_fd;
};
|