~jdpipe/ascend/trunk-old

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include "solverparameteriterator.h"

#include <iostream>
using namespace std;

SolverParameterIterator::SolverParameterIterator(slv_parameter *p) : p(p){
	// create iterator, protected function
}

SolverParameterIterator::SolverParameterIterator(){
	// default ctor
}

void
SolverParameterIterator::operator=(const SolverParameterIterator &old){
	p = old.p;
}

void
SolverParameterIterator::operator++(){
	//cerr << "INCREMENT P" << endl;
	p++;
}

const bool
SolverParameterIterator::operator<(const SolverParameterIterator &I2) const{
	return p < I2.p;
}

SolverParameter 
SolverParameterIterator::operator*() const{
	return SolverParameter(p);
}

ostream &operator<<( ostream &outs, const SolverParameterIterator &I){
	outs << I.p;
	return outs;
}