~ubuntu-branches/ubuntu/warty/speech-tools/warty

« back to all changes in this revision

Viewing changes to include/EST_TIterator.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Urlichs
  • Date: 2004-04-29 08:07:31 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040429080731-i18e2g1tv8pala5l
Tags: 1:1.2.3-7
* set SHARED=2 in config.in
  - required to build a shared Festival library

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
  *     }</programlisting>
68
68
  * 
69
69
  * @author Richard Caley <rjc@cstr.ed.ac.uk>
70
 
  * @version $Id: EST_TIterator.h,v 1.2 2001/04/04 13:11:27 awb Exp $ 
 
70
  * @version $Id: EST_TIterator.h,v 1.4 2002/12/26 15:48:54 awb Exp $ 
71
71
  */
72
72
 
73
73
template <class Container, class IPointer, class Entry> 
93
93
  IPointer pointer;
94
94
 
95
95
public:
96
 
  /// Name for an itterator like this
 
96
  /// Name for an iterator like this
97
97
  typedef EST_TIterator<Container, IPointer, Entry> Iter;
98
98
 
99
99
  /// Create an iterator not associated with any specific container.
197
197
  : public EST_TIterator<Container, IPointer, Entry>
198
198
{
199
199
public:  
 
200
  typedef EST_TIterator<Container, IPointer, Entry> Iter;
200
201
 
201
202
  /// Create an iterator not associated with any specific container.
202
203
  EST_TStructIterator() {cont=NULL;}
225
226
  // void begin(const Container &over) { (void) over; }
226
227
 
227
228
public:
 
229
  typedef EST_TRwIterator<Container, IPointer, Entry> Iter;
 
230
 
228
231
  /// Create an iterator not associated with any specific container.
229
232
  EST_TRwIterator() {cont=NULL;}
230
233
 
272
275
  : public EST_TRwIterator<Container, IPointer, Entry>
273
276
{
274
277
public:
 
278
  typedef EST_TRwStructIterator<Container, IPointer, Entry> Iter;
 
279
 
275
280
  /// Create an iterator not associated with any specific container.
276
281
  EST_TRwStructIterator() {cont=NULL;}
277
282