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