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