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