#pragma once namespace sibs { class Socket { public: Socket(); Socket(int udtSocket); Socket(int eid, int udtSocket); Socket(Socket &&other); Socket(const Socket&) = delete; Socket& operator = (const Socket&) = delete; ~Socket(); int eid; int udtSocket; }; }