This commit is contained in:
parent
e8c765e021
commit
c9aea8be1f
5 changed files with 42 additions and 16 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue