/* * Copyright (c) 2010 Remko Tronçon * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #include #if defined(SWIFTEN_PLATFORM_MACOSX) #include namespace Swift { typedef MacOSXApplicationPathProvider PlatformApplicationPathProvider; } #elif defined(SWIFTEN_PLATFORM_WIN32) #include namespace Swift { typedef WindowsApplicationPathProvider PlatformApplicationPathProvider; } #else #include namespace Swift { typedef UnixApplicationPathProvider PlatformApplicationPathProvider; } #endif