blob: 0e6e00f5531a92f7292342388d404ba5ba0eb8c3 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
 | // 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<typename C, typename Enabler>
    struct range_iterator;
    template<typename C, typename Enabler>
    struct range_mutable_iterator;
    template<typename C, typename Enabler>
    struct range_const_iterator;
// Core classes
    template<typename IteratorT>
    class iterator_range;
    template<typename ForwardRange>
    class sub_range;
// Meta-functions
    template<typename T>
    struct range_category;
    template<typename T>
    struct range_difference;
    template<typename T>
    struct range_pointer;
    template<typename T>
    struct range_reference;
    template<typename T>
    struct range_reverse_iterator;
    template<typename T>
    struct range_size;
    template<typename T>
    struct range_value;
    template<typename T>
    struct has_range_iterator;
    template<typename T>
    struct has_range_const_iterator;
} // namespace boost
#endif // include guard
 |