18 lines
365 B
C++
18 lines
365 B
C++
#ifdef _DEBUG
|
|
#define new DEBUG_NEW
|
|
#endif
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// Operations
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
inline void CSystemEventContainer::DeleteEvent(int iIndex)
|
|
{
|
|
CEvent* pEvent = m_Events[iIndex];
|
|
if( pEvent )
|
|
{
|
|
delete pEvent;
|
|
}
|
|
m_Events.RemoveAt(iIndex);
|
|
}
|