Files
range/include/boost/range.hpp

34 lines
837 B
C++
Raw Normal View History

2004-06-29 02:50:07 +00:00
// Boost.Range library
//
// Copyright Thorsten Ottosen 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/
//
2004-07-27 18:35:14 +00:00
#ifndef BOOST_RANGE_HPP_27_07_04
#define BOOST_RANGE_HPP_27_07_04
2004-06-29 02:50:07 +00:00
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
# pragma once
#endif
#if defined(_MSC_VER) && (_MSC_VER == 1300)
2005-02-06 22:22:45 +00:00
#include <boost/range/detail/collection_traits.hpp>
#include <boost/range/iterator_range.hpp>
#include <boost/range/sub_range.hpp>
#else
2004-06-29 02:50:07 +00:00
#include <boost/range/functions.hpp>
2004-08-10 16:09:30 +00:00
#include <boost/range/metafunctions.hpp>
2004-06-29 02:50:07 +00:00
#include <boost/range/iterator_range.hpp>
#include <boost/range/sub_range.hpp>
#endif // _MSC_VER == 1300
2005-02-06 22:22:45 +00:00
2004-06-29 02:50:07 +00:00
#endif