Go to the documentation of this file.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 #ifndef UPtrList_H
00042 #define UPtrList_H
00043
00044 #include <OpenFOAM/List.H>
00045
00046
00047
00048 namespace Foam
00049 {
00050
00051
00052
00053 template<class T> class UPtrList;
00054
00055 template<class T>
00056 inline typename UPtrList<T>::iterator operator+
00057 (
00058 const typename UPtrList<T>::iterator&,
00059 label
00060 );
00061
00062 template<class T>
00063 inline typename UPtrList<T>::iterator operator+
00064 (
00065 label,
00066 const typename UPtrList<T>::iterator&
00067 );
00068
00069 template<class T>
00070 inline typename UPtrList<T>::iterator operator-
00071 (
00072 const typename UPtrList<T>::iterator&,
00073 label
00074 );
00075
00076 template<class T>
00077 inline label operator-
00078 (
00079 const typename UPtrList<T>::iterator&,
00080 const typename UPtrList<T>::iterator&
00081 );
00082
00083 template<class T>
00084 Istream& operator>>(Istream&, UPtrList<T>&);
00085
00086 template<class T>
00087 Ostream& operator<<(Ostream&, const UPtrList<T>&);
00088
00089
00090
00091
00092
00093
00094 template<class T>
00095 class UPtrList
00096 {
00097
00098
00099 List<T*> ptrs_;
00100
00101
00102 public:
00103
00104
00105
00106
00107 UPtrList();
00108
00109
00110 explicit UPtrList(const label);
00111
00112
00113 UPtrList(const Xfer<UPtrList<T> >&);
00114
00115
00116 UPtrList(UPtrList<T>&, bool reUse);
00117
00118
00119
00120
00121
00122
00123
00124 inline label size() const;
00125
00126
00127 inline bool empty() const;
00128
00129
00130
00131
00132
00133
00134
00135 void setSize(const label);
00136
00137
00138
00139
00140 inline void resize(const label);
00141
00142
00143 void clear();
00144
00145
00146
00147 void transfer(UPtrList<T>&);
00148
00149
00150 inline Xfer<UPtrList<T> > xfer();
00151
00152
00153 inline bool set(const label) const;
00154
00155
00156
00157 inline T* set(const label, T*);
00158
00159
00160
00161
00162 void reorder(const UList<label>&);
00163
00164
00165
00166
00167
00168 inline const T& operator[](const label) const;
00169
00170
00171 inline T& operator[](const label);
00172
00173
00174 inline const T* operator()(const label) const;
00175
00176
00177
00178
00179
00180 typedef T value_type;
00181
00182
00183 typedef T& reference;
00184
00185
00186
00187 typedef const T& const_reference;
00188
00189
00190
00191
00192
00193 class iterator;
00194 friend class iterator;
00195
00196
00197 class iterator
00198 {
00199 T** ptr_;
00200
00201 public:
00202
00203
00204 inline iterator(T**);
00205
00206
00207
00208 inline bool operator==(const iterator&) const;
00209 inline bool operator!=(const iterator&) const;
00210
00211 inline T& operator*();
00212 inline T& operator()();
00213
00214 inline iterator operator++();
00215 inline iterator operator++(int);
00216
00217 inline iterator operator--();
00218 inline iterator operator--(int);
00219
00220 inline iterator operator+=(label);
00221
00222 friend iterator operator+ <T>(const iterator&, label);
00223 friend iterator operator+ <T>(label, const iterator&);
00224
00225 inline iterator operator-=(label);
00226
00227 friend iterator operator- <T>(const iterator&, label);
00228
00229 friend label operator- <T>
00230 (
00231 const iterator&,
00232 const iterator&
00233 );
00234
00235 inline T& operator[](label);
00236
00237 inline bool operator<(const iterator&) const;
00238 inline bool operator>(const iterator&) const;
00239
00240 inline bool operator<=(const iterator&) const;
00241 inline bool operator>=(const iterator&) const;
00242 };
00243
00244
00245 inline iterator begin();
00246
00247
00248 inline iterator end();
00249
00250
00251
00252
00253
00254 friend Ostream& operator<< <T>(Ostream&, const UPtrList<T>&);
00255 };
00256
00257
00258
00259
00260 }
00261
00262
00263
00264 # include <OpenFOAM/UPtrListI.H>
00265
00266
00267
00268 #ifdef NoRepository
00269 # include <OpenFOAM/UPtrList.C>
00270 #endif
00271
00272
00273
00274 #endif
00275
00276