File indexing completed on 2025-01-18 09:34:43
0001
0002
0003
0004
0005
0006
0007 #if !defined(FUSION_SEQUENCE_FACADE_09252006_1044)
0008 #define FUSION_SEQUENCE_FACADE_09252006_1044
0009
0010 #include <boost/fusion/support/config.hpp>
0011 #include <boost/fusion/support/sequence_base.hpp>
0012 #include <boost/mpl/bool.hpp>
0013
0014 namespace boost { namespace fusion
0015 {
0016 struct sequence_facade_tag;
0017
0018 template <typename Derived, typename Category, typename IsView = mpl::false_>
0019 struct sequence_facade : sequence_base<Derived>
0020 {
0021 typedef fusion_sequence_tag tag;
0022 typedef sequence_facade_tag fusion_tag;
0023 typedef Derived derived_type;
0024 typedef Category category;
0025 typedef IsView is_view;
0026 typedef mpl::false_ is_segmented;
0027 };
0028 }}
0029
0030 #endif