blob: 04c6e8c59b717eb09ce3aee687afdee410711913 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef T2DLL_COBJECTLIST_H
#define T2DLL_COBJECTLIST_H
#include "../common.h"
#include "LArray.h"
class AFX_CLASS_EXPORT CObjectList : public LArray {
public:
CObjectList();
virtual ~CObjectList();
virtual void AllClear();
};
#endif
|