diff options
author | Alex Borisov <b0ris@b0ris-universe.localdomain> | 2011-10-20 05:35:36 +0300 |
---|---|---|
committer | Alex Borisov <b0ris@b0ris-universe.localdomain> | 2011-10-20 05:35:36 +0300 |
commit | d3ff62b1eeaba12131226a277b56abd15b015bda (patch) | |
tree | 0bf38bbcb83ba2ca8bd9b4c7f30cf85559283c6e /client/client.h | |
parent | 4ac3da0fe4400b9109636143e8da53dbef6c3984 (diff) |
proxy representation classes
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 |