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