Extreme cleanup, see src/obsolete for details

This commit is contained in:
mac 2000-08-10 14:18:34 +00:00
commit 6d8e3a6504
141 changed files with 3937 additions and 1815 deletions

11
eo/src/eoFunctorStore.cpp Normal file
View file

@ -0,0 +1,11 @@
#include <eoFunctorStore.h>
#include <eoFunctor.h>
/// clears the memory
eoFunctorStore::~eoFunctorStore()
{
for (int i = 0; i < vec.size(); ++i)
{
delete vec[i];
}
}