1234567891011121314151617181920212223242526272829303132333435363738 |
- #ifndef BOOST_MPL_REVERSE_HPP_INCLUDED
- #define BOOST_MPL_REVERSE_HPP_INCLUDED
- #include <boost/mpl/copy.hpp>
- #include <boost/mpl/aux_/na_spec.hpp>
- namespace boost { namespace mpl {
- template<
- typename BOOST_MPL_AUX_NA_PARAM(Sequence)
- , typename BOOST_MPL_AUX_NA_PARAM(Inserter)
- >
- struct reverse
- : reverse_copy<
- Sequence
- , Inserter
- >
- {
- };
- BOOST_MPL_AUX_NA_SPEC(1, reverse)
- }}
- #endif
|