/* * Copyright (c) 2010-2011 Thilo Cestonaro * Licensed under the simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ #pragma once #include #if defined(SWIFTEN_PLATFORM_MACOSX) #include namespace Swift { typedef MacOSXProxyProvider PlatformProxyProvider; } #elif defined(SWIFTEN_PLATFORM_WIN32) #include namespace Swift { typedef WindowsProxyProvider PlatformProxyProvider; } #else #include namespace Swift { typedef UnixProxyProvider PlatformProxyProvider; } #endif