~ubuntu-branches/ubuntu/oneiric/bombono-dvd/oneiric

« back to all changes in this revision

Viewing changes to libs/boost-lib/boost/mpl/iterator_tags.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-11-04 11:46:25 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20101104114625-2tfaxma74eqggp5r
Tags: 0.8.0-0ubuntu1
* New upstream release (LP: #670193).
* Refresh 02_sparc.diff patch.
* Replace 05-boost_filesystem-link.patch with 05-fix_boost.patch, it fixes
  build failure with Boost <= 1.44.
* Bump Standards.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef BOOST_MPL_ITERATOR_TAG_HPP_INCLUDED
 
3
#define BOOST_MPL_ITERATOR_TAG_HPP_INCLUDED
 
4
 
 
5
// Copyright Aleksey Gurtovoy 2000-2004
 
6
//
 
7
// Distributed under the Boost Software License, Version 1.0. 
 
8
// (See accompanying file LICENSE_1_0.txt or copy at 
 
9
// http://www.boost.org/LICENSE_1_0.txt)
 
10
//
 
11
// See http://www.boost.org/libs/mpl for documentation.
 
12
 
 
13
// $Id: iterator_tags.hpp 49267 2008-10-11 06:19:02Z agurtovoy $
 
14
// $Date: 2008-10-11 02:19:02 -0400 (Sat, 11 Oct 2008) $
 
15
// $Revision: 49267 $
 
16
 
 
17
#include <boost/mpl/int.hpp>
 
18
 
 
19
namespace boost { namespace mpl {
 
20
 
 
21
struct forward_iterator_tag       : int_<0> { typedef forward_iterator_tag type; };
 
22
struct bidirectional_iterator_tag : int_<1> { typedef bidirectional_iterator_tag type; };
 
23
struct random_access_iterator_tag : int_<2> { typedef random_access_iterator_tag type; };
 
24
 
 
25
}}
 
26
 
 
27
#endif // BOOST_MPL_ITERATOR_TAG_HPP_INCLUDED