summaryrefslogtreecommitdiff
path: root/client/client.h
blob: 4d35e2efca8a48e325ff4ea3d3369a635ea42394 (plain)
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