Chris@16
|
1 // (C) Copyright 2008 CodeRage, LLC (turkanis at coderage dot com)
|
Chris@16
|
2 // (C) Copyright 2003-2007 Jonathan Turkanis
|
Chris@16
|
3 // Distributed under the Boost Software License, Version 1.0. (See accompanying
|
Chris@16
|
4 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)
|
Chris@16
|
5
|
Chris@16
|
6 // See http://www.boost.org/libs/iostreams for documentation.
|
Chris@16
|
7
|
Chris@16
|
8 #ifndef BOOST_IOSTREAMS_DETAIL_IS_ITERATOR_RANGE_HPP_INCLUDED
|
Chris@16
|
9 #define BOOST_IOSTREAMS_DETAIL_IS_ITERATOR_RANGE_HPP_INCLUDED
|
Chris@16
|
10
|
Chris@16
|
11 #include <boost/config.hpp>
|
Chris@16
|
12 #include <boost/detail/workaround.hpp>
|
Chris@16
|
13 #include <boost/iostreams/detail/bool_trait_def.hpp>
|
Chris@16
|
14
|
Chris@16
|
15 // Must come last.
|
Chris@16
|
16 #include <boost/iostreams/detail/config/disable_warnings.hpp>
|
Chris@16
|
17
|
Chris@16
|
18 namespace boost {
|
Chris@16
|
19
|
Chris@16
|
20 # if !BOOST_WORKAROUND(BOOST_MSVC, <= 1300) //---------------------------------//
|
Chris@16
|
21
|
Chris@16
|
22 // We avoid dependence on Boost.Range by using a forward declaration.
|
Chris@16
|
23 template<typename Iterator>
|
Chris@16
|
24 class iterator_range;
|
Chris@16
|
25
|
Chris@16
|
26 namespace iostreams {
|
Chris@16
|
27
|
Chris@16
|
28 BOOST_IOSTREAMS_BOOL_TRAIT_DEF(is_iterator_range, boost::iterator_range, 1)
|
Chris@16
|
29
|
Chris@16
|
30 } // End namespace iostreams.
|
Chris@16
|
31
|
Chris@16
|
32 # else // # if !BOOST_WORKAROUND(BOOST_MSVC, <= 1300) //-----------------------//
|
Chris@16
|
33
|
Chris@16
|
34 namespace iostreams {
|
Chris@16
|
35
|
Chris@16
|
36 template<typename T>
|
Chris@16
|
37 struct is_iterator_range {
|
Chris@16
|
38 BOOST_STATIC_CONSTANT(bool, value = false);
|
Chris@16
|
39 };
|
Chris@16
|
40
|
Chris@16
|
41 } // End namespace iostreams.
|
Chris@16
|
42
|
Chris@16
|
43 # endif // # if !BOOST_WORKAROUND(BOOST_MSVC, < 1300) //----------------------//
|
Chris@16
|
44
|
Chris@16
|
45 } // End namespace boost.
|
Chris@16
|
46
|
Chris@16
|
47 #include <boost/iostreams/detail/config/enable_warnings.hpp>
|
Chris@16
|
48
|
Chris@16
|
49 #endif // #ifndef BOOST_IOSTREAMS_DETAIL_IS_ITERATOR_RANGE_HPP_INCLUDED
|