blob: 8aa761dbcba3c568eaf4e61d382d642cc124ce08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "CObjectList.h"
CObjectList::CObjectList() {
}
/*virtual*/ CObjectList::~CObjectList() {
}
/*virtual*/ void CObjectList::AllClear() {
RemoveItemsAt(mItemCount, 1);
}
|