Files
lan_chat_cpp/SocketLibrary/Connection.h
2020-01-11 07:05:54 +01:00

15 lines
213 B
C++

#pragma once
#include <vector>
#include "Socket.h"
#include "Endpoint.h"
namespace SocketLibrary
{
class Connection
{
Connection(Socket socket, Endpoint endpoint);
Endpoint endpoint;
Socket socket;
};
}