Changes For Bug 352
[oota-llvm.git] / include / llvm / ADT / iterator.in
1 //===-- llvm/ADT/iterator - Portable wrapper around <iterator> --*- C++ -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file provides a wrapper around the mysterious <iterator> header file.
11 // In GCC 2.95.3, the file defines a bidirectional_iterator class (and other
12 // friends), instead of the standard iterator class.  In GCC 3.1, the
13 // bidirectional_iterator class got moved out and the new, standards compliant,
14 // iterator<> class was added.  Because there is nothing that we can do to get
15 // correct behavior on both compilers, we have this header with #ifdef's.  Gross
16 // huh?
17 //
18 // By #includ'ing this file, you get the contents of <iterator> plus the
19 // following classes in the global namespace:
20 //
21 //   1. bidirectional_iterator
22 //   2. forward_iterator
23 //
24 // The #if directives' expressions are filled in by Autoconf.
25 //
26 //===----------------------------------------------------------------------===//
27
28 #ifndef LLVM_ADT_ITERATOR
29 #define LLVM_ADT_ITERATOR
30
31 #include <iterator>
32
33 #if !@HAVE_BI_ITERATOR@
34 # if @HAVE_STD_ITERATOR@
35 /// If the bidirectional iterator is not defined, we attempt to define it in
36 /// terms of the C++ standard iterator. Otherwise, we import it with a "using"
37 /// statement.
38 ///
39 template<class Ty, class PtrDiffTy>
40 struct bidirectional_iterator
41   : public std::iterator<std::bidirectional_iterator_tag, Ty, PtrDiffTy> {
42 };
43 # else
44 #  error "Need to have standard iterator to define bidirectional iterator!"
45 # endif
46 #else
47 using std::bidirectional_iterator;
48 #endif
49
50 #if !@HAVE_FWD_ITERATOR@
51 # if @HAVE_STD_ITERATOR@
52 /// If the forward iterator is not defined, attempt to define it in terms of
53 /// the C++ standard iterator. Otherwise, we import it with a "using" statement.
54 ///
55 template<class Ty, class PtrDiffTy>
56 struct forward_iterator
57   : public std::iterator<std::forward_iterator_tag, Ty, PtrDiffTy> {
58 };
59 # else
60 #  error "Need to have standard iterator to define forward iterator!"
61 # endif
62 #else
63 using std::forward_iterator;
64 #endif
65
66 #endif