sl@0
|
1 |
|
sl@0
|
2 |
#ifndef BOOST_MPL_RANGE_C_HPP_INCLUDED
|
sl@0
|
3 |
#define BOOST_MPL_RANGE_C_HPP_INCLUDED
|
sl@0
|
4 |
|
sl@0
|
5 |
// Copyright Aleksey Gurtovoy 2000-2004
|
sl@0
|
6 |
//
|
sl@0
|
7 |
// Distributed under the Boost Software License, Version 1.0.
|
sl@0
|
8 |
// (See accompanying file LICENSE_1_0.txt or copy at
|
sl@0
|
9 |
// http://www.boost.org/LICENSE_1_0.txt)
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// See http://www.boost.org/libs/mpl for documentation.
|
sl@0
|
12 |
|
sl@0
|
13 |
// $Source: /cvsroot/boost/boost/boost/mpl/range_c.hpp,v $
|
sl@0
|
14 |
// $Date: 2004/11/28 01:57:09 $
|
sl@0
|
15 |
// $Revision: 1.5 $
|
sl@0
|
16 |
|
sl@0
|
17 |
#include <boost/mpl/integral_c.hpp>
|
sl@0
|
18 |
#include <boost/mpl/aux_/range_c/front.hpp>
|
sl@0
|
19 |
#include <boost/mpl/aux_/range_c/back.hpp>
|
sl@0
|
20 |
#include <boost/mpl/aux_/range_c/size.hpp>
|
sl@0
|
21 |
#include <boost/mpl/aux_/range_c/O1_size.hpp>
|
sl@0
|
22 |
#include <boost/mpl/aux_/range_c/empty.hpp>
|
sl@0
|
23 |
#include <boost/mpl/aux_/range_c/iterator.hpp>
|
sl@0
|
24 |
#include <boost/mpl/aux_/range_c/tag.hpp>
|
sl@0
|
25 |
|
sl@0
|
26 |
namespace boost { namespace mpl {
|
sl@0
|
27 |
|
sl@0
|
28 |
template<
|
sl@0
|
29 |
typename T
|
sl@0
|
30 |
, T Start
|
sl@0
|
31 |
, T Finish
|
sl@0
|
32 |
>
|
sl@0
|
33 |
struct range_c
|
sl@0
|
34 |
{
|
sl@0
|
35 |
typedef aux::half_open_range_tag tag;
|
sl@0
|
36 |
typedef T value_type;
|
sl@0
|
37 |
typedef range_c type;
|
sl@0
|
38 |
|
sl@0
|
39 |
typedef integral_c<T,Start> start;
|
sl@0
|
40 |
typedef integral_c<T,Finish> finish;
|
sl@0
|
41 |
|
sl@0
|
42 |
typedef r_iter<start> begin;
|
sl@0
|
43 |
typedef r_iter<finish> end;
|
sl@0
|
44 |
};
|
sl@0
|
45 |
|
sl@0
|
46 |
}}
|
sl@0
|
47 |
|
sl@0
|
48 |
#endif // BOOST_MPL_RANGE_C_HPP_INCLUDED
|