blob: 5e01be9b82dcd177b98222e8c1b33fdc3c8d9a7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef CLIENT_H
#define CLIENT_H
#ifdef WIN32
#include <windows.h>
#else
#include <unistd.h>
#endif
#include <string>
#include <vector>
#include "Logger.h"
#endif
|