]> AND Private Git Repository - canny.git/blob - stc/exp/ml_stc_linux_make_v1.0/include/boost/mpl/list/aux_/iterator.hpp
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
bc830e4c367f58bec86b4d7e92ee78bb635d296d
[canny.git] / stc / exp / ml_stc_linux_make_v1.0 / include / boost / mpl / list / aux_ / iterator.hpp
1 \r
2 #ifndef BOOST_MPL_LIST_AUX_ITERATOR_HPP_INCLUDED\r
3 #define BOOST_MPL_LIST_AUX_ITERATOR_HPP_INCLUDED\r
4 \r
5 // Copyright Aleksey Gurtovoy 2000-2004\r
6 //\r
7 // Distributed under the Boost Software License, Version 1.0. \r
8 // (See accompanying file LICENSE_1_0.txt or copy at \r
9 // http://www.boost.org/LICENSE_1_0.txt)\r
10 //\r
11 // See http://www.boost.org/libs/mpl for documentation.\r
12 \r
13 // $Id: iterator.hpp 49267 2008-10-11 06:19:02Z agurtovoy $\r
14 // $Date: 2008-10-11 02:19:02 -0400 (Sat, 11 Oct 2008) $\r
15 // $Revision: 49267 $\r
16 \r
17 #include <boost/mpl/iterator_tags.hpp>\r
18 #include <boost/mpl/next_prior.hpp>\r
19 #include <boost/mpl/deref.hpp>\r
20 #include <boost/mpl/list/aux_/item.hpp>\r
21 #include <boost/mpl/aux_/na.hpp>\r
22 #include <boost/mpl/aux_/lambda_spec.hpp>\r
23 #include <boost/mpl/aux_/config/ctps.hpp>\r
24 \r
25 namespace boost { namespace mpl {\r
26 \r
27 #if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)\r
28 \r
29 template< typename Node >\r
30 struct l_iter\r
31 {\r
32     typedef aux::l_iter_tag tag;\r
33     typedef forward_iterator_tag category;\r
34 };\r
35 \r
36 template< typename Node >\r
37 struct deref< l_iter<Node> >\r
38 {\r
39     typedef typename Node::item type;\r
40 };\r
41 \r
42 template< typename Node >\r
43 struct next< l_iter<Node> >\r
44 {\r
45     typedef l_iter< typename Node::next > type;\r
46 };\r
47 \r
48 #else // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION\r
49 \r
50 template< typename Node >\r
51 struct l_iter\r
52 {\r
53     typedef aux::l_iter_tag tag;\r
54     typedef forward_iterator_tag category;\r
55     typedef typename Node::item type;\r
56     typedef l_iter< typename mpl::next<Node>::type > next;\r
57 };\r
58 \r
59 #endif\r
60 \r
61 \r
62 template<> struct l_iter<l_end>\r
63 {\r
64     typedef aux::l_iter_tag tag;\r
65     typedef forward_iterator_tag category;\r
66 #if defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)\r
67     typedef na type;\r
68     typedef l_iter next;\r
69 #endif\r
70 };\r
71 \r
72 BOOST_MPL_AUX_PASS_THROUGH_LAMBDA_SPEC(1, l_iter)\r
73 \r
74 }}\r
75 \r
76 #endif // BOOST_MPL_LIST_AUX_ITERATOR_HPP_INCLUDED\r