ode/src/iterator.cpp
author William Roberts <williamr@symbian.org>
Thu, 22 Jul 2010 16:35:40 +0100
branchGCC_SURGE
changeset 44 484cb5040995
parent 0 2f259fa3e83a
permissions -rw-r--r--
Catchup to latest Symbian^4

#include "set.h"

iterator::iterator(set* sc){
    current = 1;
    this->s = sc;
}

iterator::~iterator(){
     delete s;
}

pair iterator::getElem(){
	return s->getElem(this -> current);
}

int iterator::hasNext(){
	if (current == s->length()) return 0;
	else return 1;
}

void iterator::next(){
	if (this->hasNext()) current++;
}

void iterator::setToFirst(){
	current = 1;
}