d0c7b511f04db713b90af3319d64a9a81f0ee18f
[oota-llvm.git] / include / Support / iterator
1 //===-- Support/iterator - "Portable" wrapper around <iterator> -*- C++ -*-===//
2 //
3 // This file provides a wrapper around the mysterious <iterator> header file.
4 // In GCC 2.95.3, the file defines a bidirectional_iterator class (and other
5 // friends), instead of the standard iterator class.  In GCC 3.1, the
6 // bidirectional_iterator class got moved out and the new, standards compliant,
7 // iterator<> class was added.  Because there is nothing that we can do to get
8 // correct behavior on both compilers, we have this header with #ifdef's.  Gross
9 // huh?
10 //
11 // By #includ'ing this file, you get the contents of <iterator> plus the
12 // following classes in the global namespace:
13 //
14 //   1. bidirectional_iterator
15 //   2. forward_iterator
16 //
17 //===----------------------------------------------------------------------===//
18
19 #ifndef SUPPORT_ITERATOR
20 #define SUPPORT_ITERATOR
21
22 #include "Config/config.h"
23
24 #include <iterator>
25
26 #ifdef HAVE_STD_ITERATOR
27
28 // Define stupid wrappers around std::iterator...
29 template<class Ty, class PtrDiffTy>
30 struct bidirectional_iterator
31   : public std::iterator<std::bidirectional_iterator_tag, Ty, PtrDiffTy> {
32 };
33
34 template<class Ty, class PtrDiffTy>
35 struct forward_iterator
36   : public std::iterator<std::forward_iterator_tag, Ty, PtrDiffTy> {
37 };
38
39 #else
40
41 // Just use bidirectional_iterator directly.
42 using std::bidirectional_iterator;
43 using std::forward_iterator;
44 #endif
45
46 #endif