remove attribution from a variety of miscellaneous files.
[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 is distributed under the University of Illinois Open Source
6 // 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 #undef HAVE_BI_ITERATOR
34 #undef HAVE_STD_ITERATOR
35 #undef HAVE_FWD_ITERATOR
36
37 #ifdef _MSC_VER
38 #  define HAVE_BI_ITERATOR 0
39 #  define HAVE_STD_ITERATOR 1
40 #  define HAVE_FWD_ITERATOR 0
41 #endif
42
43 #if !HAVE_BI_ITERATOR
44 # if HAVE_STD_ITERATOR
45 /// If the bidirectional iterator is not defined, we attempt to define it in
46 /// terms of the C++ standard iterator. Otherwise, we import it with a "using"
47 /// statement.
48 ///
49 template<class Ty, class PtrDiffTy>
50 struct bidirectional_iterator
51   : public std::iterator<std::bidirectional_iterator_tag, Ty, PtrDiffTy> {
52 };
53 # else
54 #  error "Need to have standard iterator to define bidirectional iterator!"
55 # endif
56 #else
57 using std::bidirectional_iterator;
58 #endif
59
60 #if !HAVE_FWD_ITERATOR
61 # if HAVE_STD_ITERATOR
62 /// If the forward iterator is not defined, attempt to define it in terms of
63 /// the C++ standard iterator. Otherwise, we import it with a "using" statement.
64 ///
65 template<class Ty, class PtrDiffTy>
66 struct forward_iterator
67   : public std::iterator<std::forward_iterator_tag, Ty, PtrDiffTy> {
68 };
69 # else
70 #  error "Need to have standard iterator to define forward iterator!"
71 # endif
72 #else
73 using std::forward_iterator;
74 #endif
75
76 #endif