Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:34:39

0001 /*=============================================================================
0002     Copyright (c) 2001-2011 Joel de Guzman
0003 
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 #if !defined(FUSION_VECTOR10_05042005_0257)
0008 #define FUSION_VECTOR10_05042005_0257
0009 
0010 #include <boost/fusion/support/config.hpp>
0011 #include <boost/fusion/container/vector/detail/cpp03/vector10_fwd.hpp>
0012 #include <boost/fusion/support/sequence_base.hpp>
0013 #include <boost/fusion/support/is_sequence.hpp>
0014 #include <boost/fusion/support/detail/access.hpp>
0015 #include <boost/fusion/iterator/next.hpp>
0016 #include <boost/fusion/iterator/deref.hpp>
0017 #include <boost/fusion/sequence/intrinsic/begin.hpp>
0018 #include <boost/fusion/container/vector/detail/at_impl.hpp>
0019 #include <boost/fusion/container/vector/detail/value_at_impl.hpp>
0020 #include <boost/fusion/container/vector/detail/begin_impl.hpp>
0021 #include <boost/fusion/container/vector/detail/end_impl.hpp>
0022 
0023 #include <boost/mpl/void.hpp>
0024 #include <boost/mpl/int.hpp>
0025 #include <boost/mpl/bool.hpp>
0026 #include <boost/mpl/at.hpp>
0027 #include <boost/mpl/vector/vector10.hpp>
0028 #include <boost/type_traits/is_convertible.hpp>
0029 #include <boost/utility/enable_if.hpp>
0030 
0031 #include <boost/preprocessor/dec.hpp>
0032 #include <boost/preprocessor/iteration/iterate.hpp>
0033 #include <boost/preprocessor/repetition/enum.hpp>
0034 #include <boost/preprocessor/repetition/enum_shifted.hpp>
0035 #include <boost/preprocessor/repetition/enum_params.hpp>
0036 #include <boost/preprocessor/repetition/enum_binary_params.hpp>
0037 #include <boost/preprocessor/repetition/repeat_from_to.hpp>
0038 
0039 namespace boost { namespace fusion
0040 {
0041     struct vector_tag;
0042     struct fusion_sequence_tag;
0043     struct random_access_traversal_tag;
0044 
0045     template <typename Dummy>
0046     struct vector0 : sequence_base<vector0<Dummy> >
0047     {
0048         typedef mpl::vector0<> types;
0049         typedef vector_tag fusion_tag;
0050         typedef fusion_sequence_tag tag; // this gets picked up by MPL
0051         typedef mpl::false_ is_view;
0052         typedef random_access_traversal_tag category;
0053         typedef mpl::int_<0> size;
0054 
0055         BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
0056         vector0() BOOST_NOEXCEPT {}
0057 
0058         template<typename Sequence>
0059         BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
0060         vector0(Sequence const& /*seq*/) BOOST_NOEXCEPT
0061         {}
0062     };
0063 }}
0064 
0065 #if !defined(BOOST_FUSION_DONT_USE_PREPROCESSED_FILES)
0066 #include <boost/fusion/container/vector/detail/cpp03/preprocessed/vector10.hpp>
0067 #else
0068 #if defined(__WAVE__) && defined(BOOST_FUSION_CREATE_PREPROCESSED_FILES)
0069 #pragma wave option(preserve: 2, line: 0, output: "preprocessed/vector10.hpp")
0070 #endif
0071 
0072 /*=============================================================================
0073     Copyright (c) 2001-2011 Joel de Guzman
0074 
0075     Distributed under the Boost Software License, Version 1.0. (See accompanying
0076     file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0077 
0078     This is an auto-generated file. Do not edit!
0079 ==============================================================================*/
0080 
0081 #if defined(__WAVE__) && defined(BOOST_FUSION_CREATE_PREPROCESSED_FILES)
0082 #pragma wave option(preserve: 1)
0083 #endif
0084 
0085 namespace boost { namespace fusion
0086 {
0087     struct vector_tag;
0088     struct fusion_sequence_tag;
0089     struct random_access_traversal_tag;
0090 
0091 #define FUSION_HASH #
0092 // expand vector1 to vector10
0093 #define BOOST_PP_FILENAME_1 <boost/fusion/container/vector/detail/cpp03/vector_n.hpp>
0094 #define BOOST_PP_ITERATION_LIMITS (1, 10)
0095 #include BOOST_PP_ITERATE()
0096 #undef FUSION_HASH
0097 }}
0098 
0099 #if defined(__WAVE__) && defined(BOOST_FUSION_CREATE_PREPROCESSED_FILES)
0100 #pragma wave option(output: null)
0101 #endif
0102 
0103 #endif // BOOST_FUSION_DONT_USE_PREPROCESSED_FILES
0104 
0105 #endif