#ifndef T2DLL_T2OBJECTARRAYLIST_H #define T2DLL_T2OBJECTARRAYLIST_H #include "../common.h" #include "CObjectList.h" class AFX_CLASS_EXPORT T2ObjectArrayList : public CObjectList { public: T2ObjectArrayList(); virtual ~T2ObjectArrayList(); void AddObjectArray(T2ObjectArray* inArray); T2ObjectArray* GetObjectArrayAt(int inIndex); }; #endif