mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
804 B
33 lines
804 B
// DataPointEventContainer.cpp: implementation of the CDataPointEventContainer class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#include "stdafx.h"
|
|
#include "Snapin.h"
|
|
#include "DataPointEventContainer.h"
|
|
|
|
#ifdef _DEBUG
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
IMPLEMENT_DYNCREATE(CDataPointEventContainer,CEventContainer)
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// Construction/Destruction
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
CDataPointEventContainer::CDataPointEventContainer()
|
|
{
|
|
m_pDEStatsListener = NULL;
|
|
}
|
|
|
|
CDataPointEventContainer::~CDataPointEventContainer()
|
|
{
|
|
if( m_pDEStatsListener )
|
|
{
|
|
delete m_pDEStatsListener;
|
|
m_pDEStatsListener = NULL;
|
|
}
|
|
}
|