Source code of Windows XP (NT5)
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

  1. // DataPointEventContainer.cpp: implementation of the CDataPointEventContainer class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "Snapin.h"
  6. #include "DataPointEventContainer.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. IMPLEMENT_DYNCREATE(CDataPointEventContainer,CEventContainer)
  13. //////////////////////////////////////////////////////////////////////
  14. // Construction/Destruction
  15. //////////////////////////////////////////////////////////////////////
  16. CDataPointEventContainer::CDataPointEventContainer()
  17. {
  18. m_pDEStatsListener = NULL;
  19. }
  20. CDataPointEventContainer::~CDataPointEventContainer()
  21. {
  22. if( m_pDEStatsListener )
  23. {
  24. delete m_pDEStatsListener;
  25. m_pDEStatsListener = NULL;
  26. }
  27. }