This commit is contained in:
Daveo 2001-03-06 18:39:42 +00:00
parent e8c765e021
commit c9aea8be1f
5 changed files with 42 additions and 16 deletions

View file

@ -507,6 +507,11 @@ GFName FName=_Filename;
/*****************************************************************************/
CElemSet::~CElemSet()
{
}
/*****************************************************************************/
void CElemSet::CleanUp()
{
int ListSize=ElemList.size();
for (int i=0; i<ListSize; i++)
@ -615,6 +620,17 @@ CElemBank::~CElemBank()
{
}
/*****************************************************************************/
void CElemBank::CleanUp()
{
int ListSize=SetList.size();
for (int i=0; i<ListSize; i++)
{
SetList[i].CleanUp();
}
}
/*****************************************************************************/
void CElemBank::Load(CFile *File,int Version)
{