Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:38:49

0001 // (C) Copyright 2008 CodeRage, LLC (turkanis at coderage dot com)
0002 // (C) Copyright 2004-2007 Jonathan Turkanis
0003 // (C) Copyright 2002, 2003 Beman Dawes   Boost.Filesystem
0004 // Distributed under the Boost Software License, Version 1.0. (See accompanying
0005 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)
0006 
0007 // See http://www.boost.org/libs/iostreams for documentation.
0008 
0009 #ifndef BOOST_IOSTREAMS_DETAIL_CONFIG_WINDOWS_POSIX_HPP_INCLUDED
0010 #define BOOST_IOSTREAMS_DETAIL_CONFIG_WINDOWS_POSIX_HPP_INCLUDED
0011 
0012 //------------------From boost/libs/filesystem/src/path_posix_windows.cpp-----//
0013 
0014 // BOOST_IOSTREAMS_POSIX or BOOST_IOSTREAMS_WINDOWS specify which API to use.
0015 #if !defined( BOOST_IOSTREAMS_WINDOWS ) && !defined( BOOST_IOSTREAMS_POSIX )
0016 # if (defined(_WIN32) || defined(__WIN32__) || defined(WIN32)) && \
0017      !defined(__CYGWIN__) \
0018      /**/
0019 #  define BOOST_IOSTREAMS_WINDOWS
0020 # else
0021 #  define BOOST_IOSTREAMS_POSIX
0022 # endif
0023 #endif
0024 
0025 #endif // #ifndef BOOST_IOSTREAMS_DETAIL_CONFIG_WINDOWS_POSIX_HPP_INCLUDED