1 /*============================================================================= 2 Copyright (c) 2001-2011 Joel de Guzman 3 4 Distributed under the Boost Software License, Version 1.0. (See accompanying 5 file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 6 ==============================================================================*/ 7 #if !defined(FUSION_SEQUENCE_FACADE_09252006_1044) 8 #define FUSION_SEQUENCE_FACADE_09252006_1044 9 10 #include <boost/fusion/support/config.hpp> 11 #include <boost/fusion/support/sequence_base.hpp> 12 #include <boost/mpl/bool.hpp> 13 14 namespace boost { namespace fusion 15 { 16 struct sequence_facade_tag; 17 18 template <typename Derived, typename Category, typename IsView = mpl::false_> 19 struct sequence_facade : sequence_base<Derived> 20 { 21 typedef fusion_sequence_tag tag; 22 typedef sequence_facade_tag fusion_tag; 23 typedef Derived derived_type; 24 typedef Category category; 25 typedef IsView is_view; 26 typedef mpl::false_ is_segmented; 27 }; 28 }} 29 30 #endif 31