/* * Copyright (c) 2010 Isode Limited. * All rights reserved. * See the COPYING file 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