7 lines
138 B
C++
7 lines
138 B
C++
#include "Connection.h"
|
|
|
|
SocketLibrary::Connection::Connection(Socket socket, Endpoint endpoint)
|
|
:socket(socket), endpoint(endpoint)
|
|
{
|
|
}
|