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.

31 lines
851 B

  1. // DataPointEventContainer.h: interface for the CDataPointEventContainer class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_DATAPOINTEVENTCONTAINER_H__C65C8863_9484_11D3_93A7_00A0CC406605__INCLUDED_)
  5. #define AFX_DATAPOINTEVENTCONTAINER_H__C65C8863_9484_11D3_93A7_00A0CC406605__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "EventContainer.h"
  10. #include "DataElementStatsListener.h"
  11. class CDataPointEventContainer : public CEventContainer
  12. {
  13. DECLARE_DYNCREATE(CDataPointEventContainer)
  14. // Construction/Destruction
  15. public:
  16. CDataPointEventContainer();
  17. virtual ~CDataPointEventContainer();
  18. // Stats Listener
  19. public:
  20. CDataElementStatsListener* m_pDEStatsListener;
  21. };
  22. #endif // !defined(AFX_DATAPOINTEVENTCONTAINER_H__C65C8863_9484_11D3_93A7_00A0CC406605__INCLUDED_)