blob: c2aa2325f1a74c77dd5bac0601c94df36af0748b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef T2DLL_T2PEOPLELINKITERATOR_H
#define T2DLL_T2PEOPLELINKITERATOR_H
#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;
};
#endif
|