Chris@16: /*============================================================================= Chris@16: Copyright (c) 2001-2011 Joel de Guzman Chris@16: Chris@16: Distributed under the Boost Software License, Version 1.0. (See accompanying Chris@16: file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) Chris@16: ==============================================================================*/ Chris@16: #if !defined(FUSION_SEQUENCE_FACADE_09252006_1044) Chris@16: #define FUSION_SEQUENCE_FACADE_09252006_1044 Chris@16: Chris@101: #include Chris@16: #include Chris@16: #include Chris@16: Chris@16: namespace boost { namespace fusion Chris@16: { Chris@16: struct sequence_facade_tag; Chris@16: Chris@16: template Chris@16: struct sequence_facade : sequence_base Chris@16: { Chris@16: typedef fusion_sequence_tag tag; Chris@16: typedef sequence_facade_tag fusion_tag; Chris@16: typedef Derived derived_type; Chris@16: typedef Category category; Chris@16: typedef IsView is_view; Chris@16: typedef mpl::false_ is_segmented; Chris@16: }; Chris@16: }} Chris@16: Chris@16: #endif