00001 #include "ScopePool.hxx" 00002 00003 namespace CLAM 00004 { 00005 ScopePool::~ScopePool() 00006 { 00007 AttributesData::iterator it = _attributePools.begin(); 00008 AttributesData::iterator end = _attributePools.end(); 00009 for (; it!=end; it++) it->Deallocate(); 00010 _size=0; 00011 } 00012 } 00013