]> git.donarmstrong.com Git - rsem.git/blob - boost/fusion/container/vector/vector_fwd.hpp
2c4848db5ee2297ed0d1b582de6842f902ca4547
[rsem.git] / boost / fusion / container / vector / vector_fwd.hpp
1 /*=============================================================================
2     Copyright (c) 1999-2003 Jaakko Jarvi
3     Copyright (c) 2001-2006 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 namespace boost { namespace fusion
15 {
16     struct void_;
17
18     template <
19         BOOST_PP_ENUM_PARAMS_WITH_A_DEFAULT(
20             FUSION_MAX_VECTOR_SIZE, typename T, void_)
21     >
22     struct vector;
23 }}
24
25 #endif