21 #ifndef TULIP_CONCATITERATOR_H 22 #define TULIP_CONCATITERATOR_H 23 #include <tulip/Iterator.h> 31 template<
class itType>
struct ConcatIterator :
public Iterator<itType> {
61 return (itOne->hasNext() || itTwo->hasNext());
virtual itType next()=0
Moves the Iterator on the next element.
Interface for Tulip iterators. Allows basic iteration operations only.