summaryrefslogtreecommitdiff
path: root/client/client.h
blob: 7be1ce2f3b49cdb0101fe079c467d9748b45ab68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

#ifndef CLIENT_H
#define CLIENT_H

#ifdef WIN32
#include <windows.h>
#endif

#include <string>
#include <vector>

#include "Logger.h"
#include "ProxyClientApp.h"

extern ProxyClientApp *this_app;


#endif