minimum_category.hpp 681 B

12345678910111213141516171819
  1. // Copyright David Abrahams 2003. Use, modification and distribution is
  2. // subject to the Boost Software License, Version 1.0. (See accompanying
  3. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. #ifndef MINIMUM_CATEGORY_DWA20031119_HPP
  5. # define MINIMUM_CATEGORY_DWA20031119_HPP
  6. # include <boost/iterator/minimum_category.hpp>
  7. namespace boost {
  8. // This import below (as well as the whole header) is for backward compatibility
  9. // with boost/token_iterator.hpp. It should be removed as soon as that header is fixed.
  10. namespace detail {
  11. using iterators::minimum_category;
  12. } // namespace detail
  13. } // namespace boost
  14. #endif // MINIMUM_CATEGORY_DWA20031119_HPP