1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef CLIENT_H #define CLIENT_H #ifdef WIN32 #include <windows.h> #else #include <unistd.h> #endif #include <iostream> #include <string> #endif