blob: e6ab5ad1e48a763ca1b9ba6d77195782f1017090 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef T2DLL_T2OBJECTARRAY_H
#define T2DLL_T2OBJECTARRAY_H
#include "../common.h"
class AFX_CLASS_EXPORT T2ObjectArray {
public:
T2ObjectArray(unsigned int startID = 1);
virtual ~T2ObjectArray();
virtual T2Object* GetIndexObject(int);
unsigned int GetStartID() { return mStartID; }
virtual T2Object* FindUnusedObject() { return NULL; }
virtual void DispatchIdle(T2TowerDoc*, int) {}
protected:
unsigned int mStartID;
};
#endif
|