summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2PeopleLinkIterator.h
blob: 716e269668a7c14f2627ba378c946f442c8864d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once
#include "common.h"

class AFX_CLASS_EXPORT T2PeopleLinkIterator {
public:
	T2PeopleLinkIterator(T2People*);
	virtual ~T2PeopleLinkIterator();
	BOOL Current(T2People**);
	BOOL Prev(T2People**);
	BOOL Next(T2People**);
	void Reset();

protected:
	T2People *mFirst;
	T2People *mCurrent;
};