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_COLLECTION_H__
00030 #define __SEAL_COLLECTION_H__
00031
00032 #include "iterator.h"
00033 #include "exception.h"
00034
00035 namespace seal
00036 {
00037
00043 template <typename T>
00044 class Collection
00045 {
00046 public:
00047
00050 Collection(void) {}
00051
00056 virtual bool isEmpty(void) const = 0;
00057
00061 virtual unsigned int size(void) const = 0;
00062
00070 virtual AbstractIterator<T>* iteratorPtr(void) const = 0;
00071
00075 virtual void purge(void) = 0;
00076
00079 virtual T& first(void) throw (EmptyCollectionException) = 0;
00080
00083 virtual const T& first(void) const throw (EmptyCollectionException) = 0;
00084
00087 virtual T& last(void) throw (EmptyCollectionException) = 0;
00088
00091 virtual const T& last(void) const throw (EmptyCollectionException) = 0;
00092 };
00093
00094 }
00095
00096 #endif // __SEAL_COLLECTION_H__
00097