#include "StdAfx.h" #include "T2ObjectArrayList.h" T2ObjectArrayList::T2ObjectArrayList() { } /*virtual*/ T2ObjectArrayList::~T2ObjectArrayList() { } void T2ObjectArrayList::AddObjectArray(T2ObjectArray* inArray) { Add(&inArray); } T2ObjectArray* T2ObjectArrayList::GetObjectArrayAt(int inIndex) { T2ObjectArray *theArray; FetchItemAt(inIndex, &theArray); return theArray; }