/*============================================================================= Copyright (c) 2001-2011 Joel de Guzman Copyright (c) 2005-2006 Dan Marsden Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ==============================================================================*/ #if !defined(FUSION_SEQUENCE_TAG_OF_27122005_1030) #define FUSION_SEQUENCE_TAG_OF_27122005_1030 #include #include namespace boost { template class array; } namespace boost { namespace fusion { struct boost_array_tag; struct fusion_sequence_tag; namespace traits { template #if defined(BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS) struct tag_of, void > #else struct tag_of > #endif { typedef boost_array_tag type; }; } }} namespace boost { namespace mpl { template struct sequence_tag; template struct sequence_tag > { typedef fusion::fusion_sequence_tag type; }; template struct sequence_tag const> { typedef fusion::fusion_sequence_tag type; }; }} #endif