 |
Edinburgh Speech Tools
2.4-release
|
|
34 #ifndef __EST_TITERATOR_H__
35 #define __EST_TITERATOR_H__
73 template <
class Container,
class IPo
inter,
class Entry>
75 template <
class Container,
class IPo
inter,
class Entry>
77 template <
class Container,
class IPo
inter,
class Entry>
80 template <
class Container,
class IPo
inter,
class Entry>
112 {
begin(over);
return *
this;}
149 {
next();
return *
this;}
172 const Entry *operator ->()
const
186 unsigned int n()
const {
return pos; }
195 template <
class Container,
class IPo
inter,
class Entry>
212 { this->
begin(over); }
214 const Entry *operator ->()
const
218 template <
class Container,
class IPo
inter,
class Entry>
260 Entry *operator ->()
const
275 template <
class Container,
class IPo
inter,
class Entry>
292 { this->
begin(over); }
294 Entry *operator ->()
const
bool has_more_elements() const
True if there are more elements to look at.
void beginning()
Reset to the start of the container.
EST_TRwIterator(Container &over)
Create an iterator ready to run over the given container.
const Entry & operator*() const
The * operator returns the current element.
EST_TIterator(const Container &over)
Create an iterator ready to run over the given container.
const Entry & current() const
Return the element currently pointed to.
Iter & operator=(const Iter &orig)
Copy an iterator by assignment.
void next()
Next moves to the next entry.
Entry & operator*() const
The * operator returns the current element.
Entry & current() const
Return the element currently pointed to.
Iter & operator++()
The increment operator does the same as next.
Iter & operator=(const Iter &orig)
Copy an iterator by assignment.
Entry & next_element()
Return the current element and move the pointer forwards.
Iter & operator=(const Iter &orig)
Copy an iterator by assignment.
EST_TIterator()
Create an iterator not associated with any specific container.
unsigned int pos
Position in the structure. May or may not be useful.
EST_TRwIterator()
Create an iterator not associated with any specific container.
EST_TStructIterator()
Create an iterator not associated with any specific container.
void begin(const Container &over)
Set the iterator ready to run over this container.
unsigned int n() const
Return the current position.
EST_TRwStructIterator(Container &over)
Create an iterator ready to run over the given container.
EST_TStructIterator(const Container &over)
Create an iterator ready to run over the given container.
EST_TRwIterator< Container, IPointer, Entry > Iter
Can't access constant containers this way.
const Entry & next_element()
Return the current element and move the pointer forwards.
EST_TRwStructIterator()
Create an iterator not associated with any specific container.
Iter & operator=(const Iter &orig)
Copy an iterator by assignment.
void begin(Container &over)
Set the iterator ready to run over this container.
EST_TIterator< Container, IPointer, Entry > Iter
Name for an iterator like this.
bool at_end() const
True when there are no more.
Container * cont
The container we are looking at.