|
||||
File indexing completed on 2025-01-18 09:47:40
0001 // Copyright 2005 Daniel Wallin. 0002 // Copyright 2005 Joel de Guzman. 0003 // Copyright 2015 John Fletcher. 0004 // 0005 // Use, modification and distribution is subject to the Boost Software 0006 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 0007 // http://www.boost.org/LICENSE_1_0.txt) 0008 // 0009 // Modeled after range_ex, Copyright 2004 Eric Niebler 0010 0011 #ifndef BOOST_PHOENIX_ALGORITHM_DETAIL_BEGIN_HPP 0012 #define BOOST_PHOENIX_ALGORITHM_DETAIL_BEGIN_HPP 0013 0014 //#include <boost/range/result_iterator.hpp> is deprecated 0015 #include <boost/range/iterator.hpp> 0016 #include <boost/range/begin.hpp> 0017 0018 namespace boost { namespace phoenix { 0019 namespace detail 0020 { 0021 template<class R> 0022 typename range_iterator<R>::type 0023 begin_(R& r) 0024 { 0025 return boost::begin(r); 0026 } 0027 } 0028 }} 0029 0030 #endif
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |