| 1 | /*============================================================================= |
|---|---|
| 2 | Copyright (c) 2010 Christopher Schmidt |
| 3 | Copyright (c) 2001-2011 Joel de Guzman |
| 4 | Copyright (c) 2015 Kohei Takahashi |
| 5 | |
| 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying |
| 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
| 8 | ==============================================================================*/ |
| 9 | |
| 10 | #ifndef BOOST_FUSION_ALGORITHM_ITERATION_REVERSE_FOLD_HPP |
| 11 | #define BOOST_FUSION_ALGORITHM_ITERATION_REVERSE_FOLD_HPP |
| 12 | |
| 13 | #include <boost/fusion/support/config.hpp> |
| 14 | #include <boost/fusion/algorithm/iteration/reverse_fold_fwd.hpp> |
| 15 | #include <boost/config.hpp> |
| 16 | #include <boost/fusion/sequence/intrinsic/end.hpp> |
| 17 | #include <boost/fusion/sequence/intrinsic/size.hpp> |
| 18 | #include <boost/fusion/support/is_segmented.hpp> |
| 19 | #include <boost/fusion/support/is_sequence.hpp> |
| 20 | #include <boost/fusion/iterator/deref.hpp> |
| 21 | #include <boost/fusion/iterator/value_of.hpp> |
| 22 | #include <boost/fusion/iterator/prior.hpp> |
| 23 | #include <boost/utility/result_of.hpp> |
| 24 | #include <boost/core/enable_if.hpp> |
| 25 | #include <boost/type_traits/add_reference.hpp> |
| 26 | |
| 27 | #define BOOST_FUSION_REVERSE_FOLD |
| 28 | |
| 29 | #if !defined(BOOST_FUSION_DONT_USE_PREPROCESSED_FILES) |
| 30 | #include <boost/fusion/algorithm/iteration/detail/preprocessed/reverse_fold.hpp> |
| 31 | #else |
| 32 | #if defined(__WAVE__) && defined(BOOST_FUSION_CREATE_PREPROCESSED_FILES) |
| 33 | #pragma wave option(preserve: 2, line: 0, output: "detail/preprocessed/reverse_fold.hpp") |
| 34 | #endif |
| 35 | |
| 36 | /*============================================================================= |
| 37 | Copyright (c) 2009-2010 Christopher Schmidt |
| 38 | Copyright (c) 2001-2011 Joel de Guzman |
| 39 | |
| 40 | Distributed under the Boost Software License, Version 1.0. (See accompanying |
| 41 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
| 42 | |
| 43 | This is an auto-generated file. Do not edit! |
| 44 | ==============================================================================*/ |
| 45 | |
| 46 | #if defined(__WAVE__) && defined(BOOST_FUSION_CREATE_PREPROCESSED_FILES) |
| 47 | #pragma wave option(preserve: 1) |
| 48 | #endif |
| 49 | |
| 50 | #include <boost/fusion/algorithm/iteration/detail/fold.hpp> |
| 51 | |
| 52 | #if defined(__WAVE__) && defined(BOOST_FUSION_CREATE_PREPROCESSED_FILES) |
| 53 | #pragma wave option(output: null) |
| 54 | #endif |
| 55 | |
| 56 | #endif // BOOST_FUSION_DONT_USE_PREPROCESSED_FILES |
| 57 | |
| 58 | #undef BOOST_FUSION_REVERSE_FOLD |
| 59 | |
| 60 | #endif |
| 61 |