// Boost.Range library // // Copyright Neil Groves 2003-2004. // Use, modification and distribution is subject to the Boost Software // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // For more information, see http://www.boost.org/libs/range/ // #ifndef BOOST_RANGE_RANGE_FWD_HPP_INCLUDED #define BOOST_RANGE_RANGE_FWD_HPP_INCLUDED namespace boost { // Extension points template struct range_iterator; template struct range_mutable_iterator; template struct range_const_iterator; // Core classes template class iterator_range; template class sub_range; // Meta-functions template struct range_category; template struct range_difference; template struct range_pointer; template struct range_reference; template struct range_reverse_iterator; template struct range_size; template struct range_value; template struct has_range_iterator; template struct has_range_const_iterator; } // namespace boost #endif // include guard