final app
This commit is contained in:
15
SocketLibrary/Connection.h
Normal file
15
SocketLibrary/Connection.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
#include <vector>
|
||||
#include "Socket.h"
|
||||
#include "Endpoint.h"
|
||||
|
||||
namespace SocketLibrary
|
||||
{
|
||||
class Connection
|
||||
{
|
||||
Connection(Socket socket, Endpoint endpoint);
|
||||
|
||||
Endpoint endpoint;
|
||||
Socket socket;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user