1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/epoc32/include/stdapis/boost/detail/sp_counted_base.hpp Tue Mar 16 16:12:26 2010 +0000
1.3 @@ -0,0 +1,69 @@
1.4 +#ifndef BOOST_DETAIL_SP_COUNTED_BASE_HPP_INCLUDED
1.5 +#define BOOST_DETAIL_SP_COUNTED_BASE_HPP_INCLUDED
1.6 +
1.7 +// MS compatible compilers support #pragma once
1.8 +
1.9 +#if defined(_MSC_VER) && (_MSC_VER >= 1020)
1.10 +# pragma once
1.11 +#endif
1.12 +
1.13 +//
1.14 +// detail/sp_counted_base.hpp
1.15 +//
1.16 +// Copyright 2005 Peter Dimov
1.17 +//
1.18 +// Distributed under the Boost Software License, Version 1.0. (See
1.19 +// accompanying file LICENSE_1_0.txt or copy at
1.20 +// http://www.boost.org/LICENSE_1_0.txt)
1.21 +//
1.22 +
1.23 +#include <boost/config.hpp>
1.24 +
1.25 +#if defined( BOOST_SP_DISABLE_THREADS )
1.26 +
1.27 +# include <boost/detail/sp_counted_base_nt.hpp>
1.28 +
1.29 +#elif defined( BOOST_SP_USE_PTHREADS )
1.30 +
1.31 +# include <boost/detail/sp_counted_base_pt.hpp>
1.32 +
1.33 +#elif defined( __GNUC__ ) && ( defined( __i386__ ) || defined( __x86_64__ ) )
1.34 +
1.35 +# include <boost/detail/sp_counted_base_gcc_x86.hpp>
1.36 +
1.37 +//~ #elif defined( __MWERKS__ ) && ( defined( __i386__ ) || defined( __x86_64__ ) )
1.38 +
1.39 +//~ # include <boost/detail/sp_counted_base_cw_x86.hpp>
1.40 +
1.41 +#elif defined( __GNUC__ ) && defined( __ia64__ ) && !defined( __INTEL_COMPILER )
1.42 +
1.43 +# include <boost/detail/sp_counted_base_gcc_ia64.hpp>
1.44 +
1.45 +#elif defined( __MWERKS__ ) && defined( __POWERPC__ )
1.46 +
1.47 +# include <boost/detail/sp_counted_base_cw_ppc.hpp>
1.48 +
1.49 +#elif defined( __GNUC__ ) && ( defined( __powerpc__ ) || defined( __ppc__ ) )
1.50 +
1.51 +# include <boost/detail/sp_counted_base_gcc_ppc.hpp>
1.52 +
1.53 +#elif defined( WIN32 ) || defined( _WIN32 ) || defined( __WIN32__ )
1.54 +
1.55 +# include <boost/detail/sp_counted_base_w32.hpp>
1.56 +
1.57 +#elif !defined( BOOST_HAS_THREADS )
1.58 +
1.59 +# include <boost/detail/sp_counted_base_nt.hpp>
1.60 +
1.61 +#elif defined( BOOST_HAS_PTHREADS )
1.62 +
1.63 +# include <boost/detail/sp_counted_base_pt.hpp>
1.64 +
1.65 +#else
1.66 +
1.67 +// Use #define BOOST_DISABLE_THREADS to avoid the error
1.68 +# error Unrecognized threading platform
1.69 +
1.70 +#endif
1.71 +
1.72 +#endif // #ifndef BOOST_DETAIL_SP_COUNTED_BASE_HPP_INCLUDED