diff options
Diffstat (limited to 'client/client.h')
-rw-r--r-- | client/client.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/client/client.h b/client/client.h new file mode 100644 index 0000000..4d35e2e --- /dev/null +++ b/client/client.h @@ -0,0 +1,14 @@ + +#ifndef CLIENT_H +#define CLIENT_H + +#ifdef WIN32 +#include <windows.h> +#else +#include <unistd.h> +#endif + +#include <iostream> +#include <string> + +#endif |