00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051 #if (_MSC_VER >= 1400) // VC8+
00052 #pragma warning (disable:4996) // Disable all deprecation warnings
00053 #endif
00054
00055 #ifndef DREAM_ITERATOR
00056 #define DREAM_ITERATOR
00057
00058 #include<iostream>
00059
00060 namespace DREAM
00061 {
00062
00063 template <class item_type>
00064 class Const_Iterator;
00065
00066
00067 template <class item_type>
00068 class Iterator
00069 {
00070 public:
00071
00072 Iterator () {};
00073
00074
00075 Iterator (item_type* node_ptr);
00076
00077
00078 Iterator (Iterator <item_type>& iter);
00079
00080
00081 bool operator== (const item_type* node_ptr);
00082
00083
00084 bool operator== (Iterator <item_type>& iter);
00085
00086
00087 bool operator== (Const_Iterator <item_type>& iter);
00088
00089
00090 bool operator!= (const item_type* node_ptr);
00091
00092
00093 bool operator!= (Iterator <item_type>& iter);
00094
00095
00096 bool operator!= (Const_Iterator <item_type>& iter);
00097
00098
00099 Iterator <item_type>& operator= (item_type* node_ptr);
00100
00101
00102 Iterator <item_type>& operator= (Iterator <item_type>& iter);
00103
00104
00105 item_type* operator* ();
00106
00107
00108 item_type* operator-> ();
00109
00110
00111 Iterator <item_type>& operator++ ();
00112
00113
00114 Iterator <item_type>& operator-- ();
00115
00116
00117 Iterator <item_type> operator++ (int);
00118
00119
00120 Iterator <item_type> operator-- (int);
00121
00122
00123 Iterator <item_type>& operator& ();
00124
00125
00126 Iterator <item_type>& operator& (int);
00127
00128 protected:
00129
00130
00131 item_type* node_ptr_;
00132 };
00133
00134
00135
00136
00137 template <class item_type>
00138 class Const_Iterator
00139 {
00140 public:
00141
00142 Const_Iterator () {};
00143
00144
00145 Const_Iterator (const item_type* node_ptr);
00146
00147
00148 Const_Iterator (Const_Iterator <item_type>& iter);
00149
00150
00151 Const_Iterator (Iterator <item_type>& iter);
00152
00153
00154 bool operator== (const item_type* node_ptr);
00155
00156
00157 bool operator== (Const_Iterator <item_type>& iter);
00158
00159
00160 bool operator== (Iterator <item_type>& iter);
00161
00162
00163 bool operator!= (const item_type* node_ptr);
00164
00165
00166 bool operator!= (Const_Iterator <item_type>& iter);
00167
00168
00169 bool operator!= (Iterator <item_type>& iter);
00170
00171
00172 Const_Iterator <item_type>& operator= (const item_type* node_ptr);
00173
00174
00175 Const_Iterator <item_type>& operator= (Const_Iterator <item_type>& iter);
00176
00177
00178 Const_Iterator <item_type>& operator= (Iterator <item_type>& iter);
00179
00180
00181 const item_type* operator* () const;
00182
00183
00184 const item_type* operator-> () const;
00185
00186
00187 Const_Iterator <item_type>& operator++ ();
00188
00189
00190 Const_Iterator <item_type>& operator-- ();
00191
00192
00193 Const_Iterator <item_type> operator++ (int);
00194
00195
00196 Const_Iterator <item_type> operator-- (int);
00197
00198
00199 Const_Iterator <item_type>& operator& ();
00200
00201
00202 Const_Iterator <item_type>& operator& (int);
00203
00204 protected:
00205
00206
00207 const item_type* node_ptr_;
00208 };
00209
00210 template <class item_type, class operation>
00211 void for_each (item_type begin_iter, item_type end_iter, operation op)
00212 {
00213 item_type iter;
00214 for (iter = begin_iter; iter != end_iter; iter++)
00215 {
00216 op (**iter);
00217 }
00218 }
00219
00220 };
00221
00222 #endif