source: NonGTP/Boost/boost/spirit/fusion/sequence/tuple_forward.hpp @ 857

Revision 857, 1003 bytes checked in by igarcia, 18 years ago (diff)
Line 
1/*=============================================================================
2    Copyright (c) 1999-2003 Jaakko Järvi
3    Copyright (c) 2001-2003 Joel de Guzman
4
5    Use, modification and distribution is subject to the Boost Software
6    License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
7    http://www.boost.org/LICENSE_1_0.txt)
8==============================================================================*/
9#if !defined(FUSION_SEQUENCE_TUPLE_FORWARD_HPP)
10#define FUSION_SEQUENCE_TUPLE_FORWARD_HPP
11
12#include <boost/spirit/fusion/sequence/limits.hpp>
13#include <boost/preprocessor/repetition/enum_params.hpp>
14#include <boost/preprocessor/repetition/enum_params_with_a_default.hpp>
15#include <boost/preprocessor/repetition/repeat_from_to.hpp>
16
17namespace boost { namespace fusion
18{
19    struct void_t;
20
21    template <
22        BOOST_PP_ENUM_PARAMS_WITH_A_DEFAULT(
23            FUSION_MAX_TUPLE_SIZE, typename T, void_t)
24    >
25    struct tuple;
26}}
27
28#endif
Note: See TracBrowser for help on using the repository browser.