Changeset 1528 for trunk/yat/utility/Index.h
- Timestamp:
- Sep 24, 2008, 5:46:28 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/utility/Index.h
r1487 r1528 40 40 public: 41 41 /** 42 Read only iterator 43 44 \since New in yat 0.5 45 */ 46 typedef std::vector<size_t>::const_iterator const_iterator; 47 48 /** 42 49 Creates an empty Index 43 50 */ … … 68 75 69 76 /** 77 \return iterator pointing to first element of Index 78 79 \since New in yat 0.5 80 */ 81 const_iterator begin(void) const; 82 83 /** 84 \return iterator pointing to element one passed last Index 85 86 \since New in yat 0.5 87 */ 88 const_iterator end(void) const; 89 90 /** 70 91 \brief access operator 71 92 */
Note: See TracChangeset
for help on using the changeset viewer.