Changeset 880 for trunk/yat/utility/vector.h
- Timestamp:
- Sep 22, 2007, 1:43:22 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/utility/vector.h
r879 r880 29 29 */ 30 30 31 #include "constIterator.h" 31 32 #include "Exception.h" 33 #include "Iterator.h" 32 34 33 35 #include <iostream> … … 87 89 public: 88 90 91 typedef Iterator<vector> iterator; 92 typedef constIterator<const vector> const_iterator; 93 89 94 /** 90 95 \brief The default constructor. … … 215 220 216 221 /** 222 */ 223 iterator begin(void); 224 225 /** 226 */ 227 const_iterator begin(void) const; 228 229 /** 217 230 \brief Make a copy of \a other. 218 231 … … 229 242 */ 230 243 void div(const vector& other); 244 245 /** 246 */ 247 iterator end(void); 248 249 /** 250 */ 251 const_iterator end(void) const; 231 252 232 253 /**
Note: See TracChangeset
for help on using the changeset viewer.