This commit is contained in:
Erik Frojdh
2019-01-16 15:22:18 +01:00
parent 1ebe0f5624
commit b19b2a044c

View File

@ -1,9 +1,8 @@
#include "ClientInterface.h"
ClientInterface::ClientInterface(MySocketTCP *socket, int n, std::string t):
mySocket(socket),
index(n),
type(t){}
ClientInterface::ClientInterface(MySocketTCP *socket, int n, std::string t): mySocket(socket),
index(n),
type(t){}
void ClientInterface::SetSocket(MySocketTCP *socket) {
mySocket = socket;