00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #ifndef __SEAL_ITERATOR_H__
00030 #define __SEAL_ITERATOR_H__
00031
00032 #include "exception.h"
00033
00034 namespace seal
00035 {
00036
00041 template <typename T>
00042 class AbstractIterator
00043 {
00044 public:
00047 virtual bool hasNext(void) = 0;
00048
00053 virtual T next(void) throw (OutOfBoundsException) = 0;
00054
00059 virtual void reset(void) = 0;
00060 };
00061
00062 }
00063
00064 #endif // __SEAL_ITERATOR_H__
00065