boost_tuple_iterator.cpp 608 B

123456789101112131415161718192021
  1. /*=============================================================================
  2. Copyright (c) 2014 Kohei Takahashi
  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. #include <boost/fusion/adapted/boost_tuple.hpp>
  7. #define FUSION_SEQUENCE boost::tuple
  8. #define FUSION_TRAVERSAL_TAG forward_traversal_tag
  9. #define FUSION_NO_PRIOR
  10. #include "./iterator.hpp"
  11. int
  12. main()
  13. {
  14. test();
  15. return boost::report_errors();
  16. }