CLAM-Development  1.1
ScopePool.cxx
Go to the documentation of this file.
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