blob: 13b15d2713e09b1ab603072f89812600f5c923c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*
* Copyright (c) 2010-2011 Thilo Cestonaro
* Licensed under the simplified BSD license.
* See Documentation/Licenses/BSD-simplified.txt for more information.
*/
#pragma once
#include "Swiften/Base/Platform.h"
#if defined(SWIFTEN_PLATFORM_MACOSX)
#include "Swiften/Network/MacOSXProxyProvider.h"
namespace Swift {
typedef MacOSXProxyProvider PlatformProxyProvider;
}
#elif defined(SWIFTEN_PLATFORM_WIN32)
#include "Swiften/Network/WindowsProxyProvider.h"
namespace Swift {
typedef WindowsProxyProvider PlatformProxyProvider;
}
#else
#include "Swiften/Network/UnixProxyProvider.h"
namespace Swift {
typedef UnixProxyProvider PlatformProxyProvider;
}
#endif
|