123456789101112131415161718192021222324252627282930313233 |
- #ifndef BOOST_MPL_AUX_RANGE_C_FRONT_HPP_INCLUDED
- #define BOOST_MPL_AUX_RANGE_C_FRONT_HPP_INCLUDED
- #include <boost/mpl/front_fwd.hpp>
- #include <boost/mpl/aux_/range_c/tag.hpp>
- namespace boost { namespace mpl {
- template<>
- struct front_impl< aux::half_open_range_tag >
- {
- template< typename Range > struct apply
- {
- typedef typename Range::start type;
- };
- };
- }}
- #endif
|