| DeSR Dependency Parser |
#include <Enumerator.h>

Public Types | |
| typedef T | ItemType |
Public Member Functions | |
| virtual bool | MoveNext ()=0 |
| Advances to the next element of the collection. | |
| virtual ItemType | Current ()=0 |
| virtual void | Reset () |
| Optional reset to the beginning of the enumeration. | |
Definition at line 33 of file Enumerator.h.
| virtual ItemType Tanl::Enumerator< T >::Current | ( | ) | [pure virtual] |
| virtual bool Tanl::Enumerator< T >::MoveNext | ( | ) | [pure virtual] |
Advances to the next element of the collection.
Implemented in Tanl::ConllXSentenceReader, Tanl::DgaSentenceReader, Tanl::TokenSentenceReader, Tanl::SplitSentenceReader, and Parser::Tokenizer.
| virtual void Tanl::Enumerator< T >::Reset | ( | ) | [inline, virtual] |
Optional reset to the beginning of the enumeration.
Reimplemented in Parser::Tokenizer.
Definition at line 46 of file Enumerator.h.