/search.css" rel="stylesheet" type="text/css"/> /search.js">
00001 #include "LafKernel/PhyEventBuf.h" 00002 00003 template<> DataBuffer<PhyEvent>::~DataBuffer() 00004 { 00005 this->clear(); 00006 } 00007 00008 template<> void DataBuffer<PhyEvent>::clear() 00009 { 00010 for(std::deque<PhyEvent*>::iterator it=m_dBuf.begin(); it!=m_dBuf.end(); ++it) { 00011 (*it)->ReleaseInstance(); 00012 } 00013 m_dBuf.clear(); 00014 }