Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/boost/fusion/container/deque/deque_fwd.hpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*=============================================================================
0002     Copyright (c) 2005-2012 Joel de Guzman
0003     Copyright (c) 2005-2007 Dan Marsden
0004 
0005     Distributed under the Boost Software License, Version 1.0. (See accompanying
0006     file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0007 ==============================================================================*/
0008 #if !defined(FUSION_DEQUE_FORWARD_02092007_0749)
0009 #define FUSION_DEQUE_FORWARD_02092007_0749
0010 
0011 #include <boost/fusion/support/config.hpp>
0012 #include <boost/config.hpp>
0013 
0014 #if (defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)   \
0015   || defined(BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS))   \
0016   || (defined(__WAVE__) && defined(BOOST_FUSION_CREATE_PREPROCESSED_FILES))
0017 # if defined(BOOST_FUSION_HAS_VARIADIC_DEQUE)
0018 #   undef BOOST_FUSION_HAS_VARIADIC_DEQUE
0019 # endif
0020 #else
0021 # if !defined(BOOST_FUSION_HAS_VARIADIC_DEQUE)
0022 #   define BOOST_FUSION_HAS_VARIADIC_DEQUE
0023 # endif
0024 #endif
0025 
0026 #if BOOST_WORKAROUND(BOOST_MSVC, < 1910)
0027 # if defined(BOOST_FUSION_HAS_VARIADIC_DEQUE)
0028 #   undef BOOST_FUSION_HAS_VARIADIC_DEQUE
0029 # endif
0030 #endif
0031 
0032 ///////////////////////////////////////////////////////////////////////////////
0033 // With no variadics, we will use the C++03 version
0034 ///////////////////////////////////////////////////////////////////////////////
0035 #if !defined(BOOST_FUSION_HAS_VARIADIC_DEQUE)
0036 # include <boost/fusion/container/deque/detail/cpp03/deque_fwd.hpp>
0037 #else
0038 
0039 ///////////////////////////////////////////////////////////////////////////////
0040 // C++11 interface
0041 ///////////////////////////////////////////////////////////////////////////////
0042 namespace boost { namespace fusion
0043 {
0044     template <typename ...T>
0045     struct deque;
0046 }}
0047 
0048 #endif
0049 #endif