Implemented Archive with only arc parameter

This commit is contained in:
smallmodel 2023-10-12 20:30:17 +02:00
parent 4a1f149051
commit 31f3c25b18
No known key found for this signature in database
GPG key ID: 9F2D623CEDF08512

View file

@ -180,11 +180,11 @@ Type *Container<Type>::AddressOfObjectAt(int index)
return &objlist[index - 1];
}
/*template< class Type >
template< class Type >
void Container<Type>::Archive( Archiver &arc )
{
}*/
Archive(arc, ArchiveClass<Type>);
}
template<class Type>
void Container<Type>::ClearObjectList(void)