]> git.donarmstrong.com Git - rsem.git/blob - boost/fusion/container/vector/vector_fwd.hpp
Updated boost to v1.55.0
[rsem.git] / boost / fusion / container / vector / vector_fwd.hpp
1 /*=============================================================================
2     Copyright (c) 1999-2003 Jaakko Jarvi
3     Copyright (c) 2001-2011 Joel de Guzman
4
5     Distributed under the Boost Software License, Version 1.0. (See accompanying
6     file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7 ==============================================================================*/
8 #if !defined(FUSION_VECTOR_FORWARD_07072005_0125)
9 #define FUSION_VECTOR_FORWARD_07072005_0125
10
11 #include <boost/fusion/container/vector/limits.hpp>
12 #include <boost/preprocessor/repetition/enum_params_with_a_default.hpp>
13
14 #include <boost/fusion/container/vector/vector10.hpp>
15 #if (FUSION_MAX_VECTOR_SIZE > 10)
16 #include <boost/fusion/container/vector/vector20.hpp>
17 #endif
18 #if (FUSION_MAX_VECTOR_SIZE > 20)
19 #include <boost/fusion/container/vector/vector30.hpp>
20 #endif
21 #if (FUSION_MAX_VECTOR_SIZE > 30)
22 #include <boost/fusion/container/vector/vector40.hpp>
23 #endif
24 #if (FUSION_MAX_VECTOR_SIZE > 40)
25 #include <boost/fusion/container/vector/vector50.hpp>
26 #endif
27
28 #if !defined(BOOST_FUSION_DONT_USE_PREPROCESSED_FILES)
29 #include <boost/fusion/container/vector/detail/preprocessed/vector_fwd.hpp>
30 #else
31 #if defined(__WAVE__) && defined(BOOST_FUSION_CREATE_PREPROCESSED_FILES)
32 #pragma wave option(preserve: 2, line: 0, output: "detail/preprocessed/vvector" FUSION_MAX_VECTOR_SIZE_STR "_fwd.hpp")
33 #endif
34
35 /*=============================================================================
36     Copyright (c) 2001-2011 Joel de Guzman
37
38     Distributed under the Boost Software License, Version 1.0. (See accompanying
39     file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
40
41     This is an auto-generated file. Do not edit!
42 ==============================================================================*/
43
44 #if defined(__WAVE__) && defined(BOOST_FUSION_CREATE_PREPROCESSED_FILES)
45 #pragma wave option(preserve: 1)
46 #endif
47
48 namespace boost { namespace fusion
49 {
50     struct void_;
51
52     template <
53         BOOST_PP_ENUM_PARAMS_WITH_A_DEFAULT(
54             FUSION_MAX_VECTOR_SIZE, typename T, void_)
55     >
56     struct vector;
57 }}
58
59 #if defined(__WAVE__) && defined(BOOST_FUSION_CREATE_PREPROCESSED_FILES)
60 #pragma wave option(output: null)
61 #endif
62
63 #endif // BOOST_FUSION_DONT_USE_PREPROCESSED_FILES
64
65 #endif