Changeset 3336 for trunk/yat/utility/Aligner.h
- Timestamp:
- Oct 25, 2014, 1:27:45 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/utility/Aligner.h
r3213 r3336 24 24 along with yat. If not, see <http://www.gnu.org/licenses/>. 25 25 */ 26 27 #include "CigarIterator.h" 26 28 27 29 #include <boost/cstdint.hpp> … … 179 181 public: 180 182 /** 183 \since New in yat 0.13 184 */ 185 typedef 186 CigarIterator<std::deque<uint32_t>::const_iterator > const_iterator; 187 188 /** 189 \return iterator pointing to first element 190 191 \since New in yat 0.13 192 */ 193 const_iterator begin(void) const; 194 195 /** 181 196 Erases all elements. 182 197 */ 183 198 void clear(void); 199 200 /** 201 \return iterator pointing to one passed last element 202 203 \since New in yat 0.13 204 */ 205 const_iterator end(void) const; 184 206 185 207 /**
Note: See TracChangeset
for help on using the changeset viewer.