00001 #include "Pool.hxx" 00002 00003 namespace CLAM 00004 { 00005 DescriptionDataPool::~DescriptionDataPool() 00006 { 00007 ScopePools::iterator it = _scopePools.begin(); 00008 ScopePools::iterator end = _scopePools.end(); 00009 for (; it != end; it++) 00010 if (*it) delete *it; 00011 } 00012 }