sequence_facade.hpp 1002 B

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